• Resolved dydadou

    (@dydadou)


    Hi there,

    I’m using Woocomemrce Chained Products and I would like to remove theses chained products from my invoices. Any tip to do so ?

    Many thanks !

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

    (@dwpriv)

    Hi

    Try using this code snippet:

    <?php
    /**
     * Hide chained products on the invoice
     */
    add_action( 'wpo_wcpdf_custom_styles', function( $document_type, $document ) {
    	if ( $document_type == 'invoice' ) {
    		?>
    		.chained-product {
    			display: none;
    		}
    		<?php
    	}
    }, 10, 2 );

    You can download the Code Snippets plugin to add this snippet, if you haven’t already.

    Best regards

    Thread Starter dydadou

    (@dydadou)

    It works !
    Many thanks for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Chained Products on PDF invoices’ is closed to new replies.