• Resolved geekilaz

    (@geekilaz)


    Hello,

    Its possible to don’t show the weight of the product on the invoice?

    I can’t remove the weight on the ‘Shipping’ tab of the product configuration because of my shipping plugin.

    Thanks in advance for your help.

    Best regards,
    Barbara

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

    (@pomegranate)

    Hello Barbara,
    The only way to do this in the free version is either to remove this line in the invoice template (create a custom template):

    
    <?php if( !empty( $item['weight'] ) ) : ?><dt class="weight"><?php _e( 'Weight:', 'wpo_wcpdf' ); ?></dt><dd class="weight"><?php echo $item['weight']; ?><?php echo get_option('woocommerce_weight_unit'); ?></dd><?php endif; ?>
    

    Or hide it with CSS:

    
    .meta .weight { display: none; }
    

    In the Premium templates extension you can do this with a checkbox in the settings.

    Let me know if you have any other questions!

    Ewout

    Plugin Contributor Ewout

    (@pomegranate)

    Hi Nancy,
    Glad to hear that helps ??
    Since you’re a paying user, you’re entitled to priority support – next time you can contact us via [email protected] (include your license key or order number in the email).

    Have a great day!
    Ewout

    Thread Starter geekilaz

    (@geekilaz)

    Thanks for your answer ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Don’t show the weight’ is closed to new replies.