• Resolved mrsmith11

    (@mrsmith11)


    Hello,

    I want to display multiple line sentence on only invoice.

    and I am using CodeSnippets plugin.

    Could you please tell me how to write on CodeSnippets plugin?

    Best

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author priyankajagtap

    (@priyankajagtap)

    Hi @mrsmith11,

    Can you please let us know what text you want to display on the invoice? Also, please let us know the place where exactly you want that text to be displayed on the Invoice. The screenshot showing the same would be helpful to understand your requirement clearly and we can assist in a better way.

    Thread Starter mrsmith11

    (@mrsmith11)

    Hi @priyankajagtap,

    Thanks for your reply.

    I want to add multiple line sentence on red section below.(only on invoice)

    View post on imgur.com

    and text is below.

    ◆振込先のご案内

    〇〇銀行 〇〇支店 普通 0000000

    株式会社ABC

    Hope your reply soon.

    Best

    Plugin Author priyankajagtap

    (@priyankajagtap)

    Hi @mrsmith11,

    Thank you for your reply and for sharing the screenshot.

    You can use the hook “wcdn_after_colophon” of our plugin to achieve your requirements. Below I am sharing the custom code snippet that you can add to the “functions.php” file of your currently active theme.

    // Hook into ‘wcdn_after_colophon’
    function my_custom_after_colophon() {
    echo ‘hey this nick’;
    }
    add_action(‘wcdn_after_colophon’, ‘my_custom_after_colophon’);

    Kindly change the text message ‘hey this nick’ in the above code as per your requirements. Please check and let us know if the provided code snippet works as per your requirements or not.

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