• Resolved taku0407

    (@taku0407)


    Hi, I am a fan of this plugin.
    I would like to know how to change the text of the Cancel button on the My Account order page.
    Thank you in advance.

    “Cancel Request”

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author WpExperts Hub

    (@wpexpertshub)

    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;
    }
    Thread Starter taku0407

    (@taku0407)

    We’ve solved it!
    Thank you!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cancel button text change.’ is closed to new replies.