Replies: 0
Hi!
I’m pretty sure it’s easy but i tried to find what to hide and wasn’t sure/couldn’t find it:
on the packing slip i want the shipping method text not to be visible (because we use a long text there for a message in checkout)
I found it would probably need to follow something like this:
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'){
?>
.X {
display: none;
}
<?php
}
but i’m not sure what X would have to be, and not sure if this is the right direction. Thanks in advance for your attention for a rookie question 🙂