• Resolved Tishina

    (@gkaralov)


    Hello,

    Today I updated to the latest version of the plugin and noticed that in the delivery notes there is a new field shipping address which is the same as the field of the Client.

    Can you guide me how to remove the shipping address from the delivery note?

    Kind regards!

Viewing 1 replies (of 1 total)
  • Plugin Support Upendra Kapse

    (@wpupen)

    Hi Tishina,

    Please add the below code snippet either in the functions.php file of your child theme or add it as a snippet using the Code Snippets plugin on your site to remove the shipping address from the delivery note:

    function example_serif_font_and_large_address() {
        ?>
        <style>         
                .delivery-note .shipping-address  {
                    display:none;
                }
        </style>
        <?php
    }
    add_action( 'wcdn_head', 'example_serif_font_and_large_address', 20 );

    Kind Regards,
    Upendra.

Viewing 1 replies (of 1 total)
  • The topic ‘Removing Shipping Address’ is closed to new replies.