Home › Forums › WoodMart support forum › Product SKU › Reply To: Product SKU
December 8, 2021 at 9:28 am
#337687
Luke Nielsen
Keymaster
Hello,
In order to display the “SKU” beneath the title on the shop page, try to add this code to the functions.php file in your child theme.
if ( ! function_exists('wd_sku_under_title_on_loop') ) {
function wd_sku_under_title_on_loop() {
global $product;
$sku = $product->get_sku();
if ( $sku ) {
echo '<span class="product-grid-sku"><span>SKU: </span>' . $sku . '</span>';
}
}
add_action( 'woocommerce_shop_loop_item_title', 'wd_sku_under_title_on_loop', 15 );
}
The search shows all similar queries.
Kind Regards