Viewing 1 replies (of 1 total)
  • Plugin Contributor Darren Peyou

    (@dpeyou)

    Hi @johnosmond,

    You can use this code to do so. This will inject some code that will allow you to hide the payment method using CSS:

    add_action( 'wpo_wcpdf_custom_styles', function( $document_type, $document ) {
    	?>
    	.payment-method {display:none;}
    	<?php
    }, 10, 2 );

    The easier way is to use the Premium Extension’s Customizer which gives you the ability to control what data appears on your documents. The payment method row isn’t there by default, so you wouldn’t have to worry about it.

    I hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Payment Method’ is closed to new replies.