• I am using this plugin in Japan.

    Currently, it is titled Order.

    Could you retitle this to Invoice?

    Also, could you add another link to the email and use it as a receipt?

    Please, Professor.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter word45press

    (@word45press)

    sorry. additional information. There is a printout in the email. Click on the print and the title will become your order. Can I change this to an invoice?


    Also, can I add another print to the email and title it Receipt?

    Plugin Author priyankajagtap

    (@priyankajagtap)

    Hi @word45press,

    Sorry for the delay in response to this.

    From your query, what we have understood is that you want to change the “Open print view in browser” Text In email URl. If we have understood it correctly then you can add the below custom code in the “functions.php” file of your currently active theme.

    /**
    Add this code snippet in the functions.php file of your currently active theme.
    This will change “Open print view in browser Text” In email URl.
    */
    function change_print_view_in_browser_text_in_email_function( $text, $domain ) {
    if ( ‘Open print view in browser’ === $text && ‘woocommerce-delivery-notes’ === $domain ) {

    return ‘Open print Invoice/receipt view in browser’; // Modified this Text with your Text. It will change Open print view in browser.

    }
    return $text;
    }
    add_filter( ‘wcdn_print_view_in_browser_text_in_email’, change_print_view_in_browser_text_in_email_function’, 10, 2 );

    Once you have replaced the above code snippet, please check and let us know if it is working fine or not.

    Please let us know if we have misunderstood the question.

    Thread Starter word45press

    (@word45press)


    thank you. It is different. When you open it in your browser for actual inspection, it is titled Order. I would like this to be an invoice.

    Also, currently only one line is displayed in the email. I want to make this into two lines, one for the invoice and one for the receipt.

    Thank you very much

    Plugin Author priyankajagtap

    (@priyankajagtap)

    Hi @word45press,

    I would like to inform you that we do have an option named “Email attach to” present on the Templates tab of our Print Invoice plugin. You can enable this option and add the email notifications there to which you want to attach the invoice and the receipt.
    Screenshot for your reference: https://app.screencast.com/phT65Pb0y3odH

    Kindly check and let us know if it helps to achieve your requirements or not.

    Thread Starter word45press

    (@word45press)

    It is not attached to an email.

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.