[ad_1]
HI @taku0407 , you can add this block of code in your active theme’s functions.php file to change text.
add_filter('gettext','change_translate_text',20);
function change_translate_text($translated_text){
if('Cancel Request' === $translated_text){
$translated_text = 'Cancel';
}
return $translated_text;
}
