• gomarketingdk

    (@gomarketingdk)


    Hello.

    First off, I would like to thank you for this wonderful plugin.

    I have a client who really needs to exclude all prices from the delivery note. Is there a way to do this without directly editing the core files.

    My client and I would really appreciate, if you could provide some sort of code which could help us in the right direction.

    Best regards
    Markus

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @gomarketingdk

    Thank you. We are glad you liked the plugin and find it useful.

    Do you want to hide the Price column from the delivery note?
    You can do this using css. Copy the ‘style.css’ from wp-content/plugins/woocommerce-delivery-notes/templates/print-order to wp-content/themes/yourtheme/woocommerce/print-order.

    Add the following css to hide the Price Column –

    
    .delivery-note .head-item-price,
    .delivery-note .product-item-price,
    .delivery-note .total-item-price{
    	display: none;
    }
    
    

    Please let me know if this worked for you.

    Regards,
    Rashmi

    lfh55

    (@lfh55)

    Hi,

    Hi, I Copy the ‘style.css’ from wp-content/plugins/woocommerce-delivery-notes/templates/print-order to wp-content/themes/yourtheme/woocommerce/print-order.
    and I have pasted this following coding on style.css, but it is still not removing the prices from the DO

    .delivery-note .head-item-price,
    .delivery-note .product-item-price,
    .delivery-note .total-item-price{
    	display: none;
    }

    So how? I need help, and then Is it possible to insert delivery slot to DO? because I already install woocomerce delivery slot plugin, but when I want print the invoice or the delivery not, it’s not show the time slot.

    Best regards

    Hi @lfh55

    Do you want to remove all prices including the total column? The css I gave will remove the ‘Price’ column from the table in the delivery note.

    Can you send me a screenshot of how the delivery note is displayed after adding this code? I am a bit confused as to how you want it to be displayed.

    Please let me know.

    Regards,
    Rashmi

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Possible to remove prices from delivery note?’ is closed to new replies.