Viewing 4 replies - 1 through 4 (of 4 total)
  • moksha shah

    (@mokshasharmila13)

    Hi @taku0407

    To change the Text of the ‘Print’ button which appears on the “view-order page”, please add the below code in your active theme’s functions.php file or use a plugin like Code Snippets:

    function change_print_button_name($order) {
    	$order = 'Hello World';
            return $order;
    };
    add_filter('wcdn_print_button_name_order_page', 'change_print_button_name', 10, 2);

    Please let us know if you need any further help.

    Regards,
    Moksha.

    Thread Starter taku0407

    (@taku0407)

    Hi @mokshasharmila13

    I was able to solve the problem, thank you!!!!

    Is this button text present in the older versions?

    moksha shah

    (@mokshasharmila13)

    Hi @taku0407

    Yes, this button text is also present in older versions.

    Regards,
    Moksha.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change text of “view-order page” print button’ is closed to new replies.