• Good Afternoon,
    I an using one of the templates that is provided with the plugin.
    In the example it has a separate column for quantity, however in my email template the quantity is a line under the name of the product.
    How can i change this?
    Also, how can i add the SKU into a column too?
    Thanks,
    Sally

Viewing 1 replies (of 1 total)
  • hannah

    (@hannahritner)

    Hey Sally,
    Hope your day’s going well! Could you send me a screenshot of what this looks like?
    WooCommerce actually has a hook to add the SKU into the emails. You may add this custom code snippet to show the product SKUs on the email templates:

    function add_sku_to_wc_emails( $args ) {
      
        $args['show_sku'] = true;
        return $args;
    }
    add_filter( 'woocommerce_email_order_items_args', 'add_sku_to_wc_emails' );

    Hope that helps!

    Best,
    Hannah

Viewing 1 replies (of 1 total)

The topic ‘Quantity column’ is closed to new replies.