Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi! This is not possible out of the box, but if you want you can do this using the wpo_wcpdf_merged_bulk_document_content filter:

    
    add_filter( 'wpo_wcpdf_merged_bulk_document_content', 'wpo_wcpdf_no_page_breaks', 10, 3 );
    function wpo_wcpdf_no_page_breaks( $html, $html_content, $bulk_document ) {
    	$html = implode( '', $html_content );
    	return $html;
    }
    

    If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters

    Thread Starter pavloborysenko

    (@pavloborysenko)

    Hello

    Thank you! I will try it!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘multiple invoices per pdf page’ is closed to new replies.