• Resolved webworkstodoer

    (@webworkstodoer)


    Hi Ewout,

    Thanks for th great plugin! really works like a charm. However i have these issues, or rather i should say changes that i want to make on my invoice, and apparently i am a newbie to woo stuff.

    Firstly, just below the subtotal i see a shipping coulmn that shows all the cities we deliver too. I want to remove that and just show free shipping.

    Secondly, i want to add the line ‘inclusive of all taxes’ in the total column after the amount is displayed.

    Really looking forward to your reply, Thanks for your help!

    https://www.ads-software.com/plugins/woocommerce-pdf-invoices-packing-slips/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi!
    I’m not sure where exactly those cities are displayed, as that is not standard WooCommerce functionality. Are you using a plugin for shipping? Or is this simply the name you have given to the shipping method? If so, it’s probably the ‘via XXX’ line, which you can hide with a bit of CSS (documentation here: Using custom styles):

    .shipped_via { display: none; }

    You can also add that text to the total with css:

    .order_total .totals-price:after {
        content: ' inclusive of all tax';
    }

    Hope that helps!
    Ewout

    Thread Starter webworkstodoer

    (@webworkstodoer)

    Hi, Thanks for yor reply. Really appreciated!

    I was able to see the inclusive of tax near the total, however the shipping still shows.

    here is the link to the invoice copy:

    https://www.dropbox.com/s/rvgwsah4nv25cb3/invoice-20161109%20%283%29.pdf?dl=0

    Thread Starter webworkstodoer

    (@webworkstodoer)

    Hi, I fugured it out, the class name was shipping.

    Thanks a lot for your help!!

    Plugin Contributor Ewout

    (@pomegranate)

    Great, glad to hear that! For anyone else with the same or similar issue:

    .shipped_via is the “Via Flat Rate” small print after the shipping cost.
    .shipping is the complete shipping line in the totals.

    To hide that, you can use the following CSS:

    table.totals .shipping {
        display: none;
    }

    Ewout

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Shipping details and inclusive of all taxes line’ is closed to new replies.