Remove SKU and Weight
-
I want to remove the sku and weight from the packing slip, I saw this code and it works to remove the sku but even if I add weight to .product .meta .sku .weight it dosen’t work. I can remove 1 or the other but not both.
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'){ ?> .product .meta .sku { display:none; } <?php } }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Remove SKU and Weight’ is closed to new replies.