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

    (@pomegranate)

    Hi Richard,
    In a default WooCommerce setup there is no such line, so this is probably added by a plugin. In the free version, it’s not possible to alter the totals (the output is generated by WooCommerce by the same functions that create the output for the woocommerce order emails). With the Premium templates extension you can add/remove lines from the totals from within the settings though, so this may help.

    Alternatively, you could temporarily enable HTML output from the Status tab in the PDF invoice settings, then do ‘inspect element’ on that backorder line to find the class that is used for the tr, then add display: none; to that class the CSS of the template.

    Hope that helps!
    Ewout

    Max

    (@art-woodde)

    Or simply add

    add_filter( 'woocommerce_backordered_item_meta_name' , '__return_false' );

    to your functions.php 😉

    Plugin Contributor Ewout

    (@pomegranate)

    Great, thanks for sharing!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing 'backorder' line from invoice’ is closed to new replies.