Viewing 1 replies (of 1 total)
  • Plugin Support kenil802

    (@kenil802)

    Hi @hussainmerchant,

    Sorry for the delay in response.

    Can you please try replacing the below function in wcdn-template-function.php file?

    Code:

    function wcdn_navigation() {
    $print_text = apply_filters( ‘wcdn_print_button_text_on_print_page’, __( ‘Print’, ‘woocommerce-delivery-notes’ ) );
    ?>
    <div id=”navigation”>
    <?php esc_html_e( $print_text ); ?>
    </div><!– #navigation –>
    <?php
    }

    After replacing the above function you can change the text Print using the filter wcdn_print_button_text_on_print_page in functions.php file.

    For eg :

    add_filter(‘wcdn_print_button_text_on_print_page’,’wcdn_print_text’);
    function wcdn_print_text(){
    $print = “Print inn”;
    return $print;
    }

    Please try this and let us know how it goes.

    Regards,
    Kenil Shah

Viewing 1 replies (of 1 total)
  • The topic ‘How to change Print: Open print view in browser in email’ is closed to new replies.