• Resolved arthrnvrn

    (@arthrnvrn)


    Hello there,

    Is there any way to modify the PDF file name attached in the mail?

    Thank you,
    Arthur

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

    (@webtoffee)

    Hi @arthrnvrn,

    You can use below filter to alter the PDF name.

    add_filter('wf_pklist_alter_pdf_file_name', 'wt_pklist_alter_pdf_file_name_fn', 10, 3);
    function wt_pklist_alter_pdf_file_name_fn($name, $template_type, $order_ids)
    {
    	$name='custom_pdf_name'; //no need to append .pdf
    	return $name;
    }

    Hope it helps.

    Thread Starter arthrnvrn

    (@arthrnvrn)

    Hello @webtoffee,

    Thank you for the fast reply!

    Cheers,
    Arthur

    Plugin Author WebToffee

    (@webtoffee)

    Hi @arthrnvrn,

    If you like the plugin and support, please leave us a review.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change PDF file name’ is closed to new replies.