[ad_1]
i want to remove size variation and weight in WooCommerce PDF Packing Slips. i managed to remove weight on the invoice by using these
add_action( 'wpo_wcpdf_custom_styles', 'wpo_wcpdf_custom_styles', 10, 2 );
function wpo_wcpdf_custom_styles ( $document_type, $document ) {
?>
.product > .meta > .weight {
display: none;
}
<?php
}this line only remove weight. how to remove size variation too?
- This topic was modified 6 hours, 26 minutes ago by .
The page I need help with: [log in to see the link]
