• Hello!

    How can I remove the billing address from the “Delivery Note”?

    • This topic was modified 1 year, 9 months ago by wellmor.
Viewing 2 replies - 1 through 2 (of 2 total)
  • moksha shah

    (@mokshasharmila13)

    Hi @wellmor

    You can remove the billing address from the “delivery notes” in our invoice. Please can you add this function in either the functions.php file of your active theme or add it as a snippet using the Code Snippets plugin.

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

    Please let us know if you you have any queries.

    Regards,Moksha.

    Thread Starter wellmor

    (@wellmor)

    Sorry for the delay in responding!

    Perfect thank you!

    Only one question would be, for example, leaving the item’s description on the first line and the quantity and value on the bottom line, as this makes the name of the item more readable.

    Thank you very much in advance for your help as always.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove the billing address from the “Delivery Note”’ is closed to new replies.