Skip to content

How to display the SKU on single product pages in Hestia

This guide shows you how to display the product SKU on WooCommerce single product pages in Hestia by adding a short code snippet to your child theme's functions.php file.

If you have not created a child theme then be sure to create one before proceeding or your changes will be lost on next update:  How to create a child theme

After you have created your child theme add the following snippet in the functions.php file of the child theme to make de SKU appear on the single product pages:

add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 41 );
Was this helpful?