Hi there!
I’d be happy to help you with this.
SKUs are part of the order details PHP template of the plugin. If you want to hide it, you can add a code snippet like the answer on this forum.
add_filter( 'woocommerce_email_order_items_args', 'customize_email_order_items_args', 20 );
function customize_email_order_items_args( $items_args ) {
$items_args['show_sku'] = false;
return $items_args;
}
Here’s a guide of how you can add this PHP code snippet to your website – https://www.kadencewp.com/help-center/docs/kadence-theme/how-to-add-a-custom-filter-or-function-with-code-snippets/
I hope this helps, and let me know if we can assist you further.
Regards,
Karla