Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support karlalevelup

    (@karlalevelup)

    Hello @justsweat,

    Thank you for reaching out to us.

    The WooCommerce plugin has a hook for this. 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 this helps.

    Regards,
    Karla

    my one adds a sku like so (#SKU) is there a way to change it to just show SKU:SKU

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add SKU into content’ is closed to new replies.