Title: Quantity column
Last modified: August 10, 2021

---

# Quantity column

 *  [sjelbart](https://wordpress.org/support/users/sjelbart/)
 * (@sjelbart)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/quantity-column/)
 * 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](https://wordpress.org/support/users/hannahritner/)
 * (@hannahritner)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/quantity-column/#post-14758161)
 * 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.

 * ![](https://ps.w.org/kadence-woocommerce-email-designer/assets/icon-256x256.png?
   rev=3115863)
 * [Kadence WooCommerce Email Designer](https://wordpress.org/plugins/kadence-woocommerce-email-designer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/kadence-woocommerce-email-designer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/)
 * [Active Topics](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/kadence-woocommerce-email-designer/reviews/)

## Tags

 * [quantity](https://wordpress.org/support/topic-tag/quantity/)

 * 1 reply
 * 2 participants
 * Last reply from: [hannah](https://wordpress.org/support/users/hannahritner/)
 * Last activity: [4 years, 10 months ago](https://wordpress.org/support/topic/quantity-column/#post-14758161)
 * Status: not resolved