Bottom page of invoice name and email change

MultivendorX Pro

Resolved
Viewing 3 reply threads
  • Author
    Posts
    • #145314
      James
      Participant

      Hello,
      The previous code to change the bottom page of the invoice information doesn’t work on MultivendorX Pro :

      add_filter(‘wcmp_pdf_invoice_pdf_footer_content’,’wcmp_pdf_invoice_content_change’, 10, 1);
      function wcmp_pdf_invoice_content_change( $added_footer_content ){
      $new_footer_content = array(‘your_web_site’, ‘your_email’);// change this as per your requirement.
      $added_footer_content = implode(‘ | ‘, $new_footer_content);
      return $added_footer_content;
      }

      Can you give me a new one for MultivendorX Pro ? 🙂

    • #145378

      James, our team is looking into this.

      Kindly provide them some time.

    • #145423

      Hi,
      Kindly add below code

      add_filter('mvx_pdf_invoice_pdf_footer_content','mvx_pdf_invoice_content_change', 10, 1);
      function mvx_pdf_invoice_content_change( $added_footer_content ){
      	$new_footer_content = array('your_web_site', 'your_email');// change this as per your requirement.
      	$added_footer_content = implode(' | ', $new_footer_content);
      	return $added_footer_content;
      }
      Copy

      Regards,

    • #145702
      James
      Participant

      Perfect ! Thanks
      you can close this thread

      Best Regards,
      James.

Viewing 3 reply threads

The topic ‘Bottom page of invoice name and email change’ is closed to new replies.