Home › Forums › Basel support forum › SKU instead of price › Reply To: SKU instead of price
November 30, 2017 at 9:24 am
#26349
Artem Temos
Keymaster
Hi,
Try to add this code snippet to the functions.php file in the child theme to achieve that
add_action( 'woocommerce_before_shop_loop_item_title', 'custom_before_title' );
function custom_before_title() {
global $product;
if ( $product->get_sku() ) {
echo $product->get_sku();
}
}
Regards