Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor alexmigf

    (@alexmigf)

    Hello @hhelmanj

    Can you put this code in your functions.php file and see if it works?

    add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles', 10, 2 );
    function wpo_wcpdf_custom_styles ( $document_type, $document ) {
    	if( $document_type == 'packing-slip' ) {
    		?>
    		.document-type-label {
    			display: none !important;
    		}
    		<?php
    	}
    }

    If you never worked with filters/actions please read this documentation.

    Thread Starter hhelmanj

    (@hhelmanj)

    Perfect! It works! I love you! lol

    Plugin Contributor alexmigf

    (@alexmigf)

    lol, glad it worked!

    Have a great day ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘ALBARAN under the logo’ is closed to new replies.