This topic has 2 replies, 2 voices, and was last updated 8 years, 10 months ago ago by Jack Richardson
How can I display the sku in category products page?
Hello,
Please add this code in functions.php file:
add_action( 'woocommerce_after_shop_loop_item', 'prima_custom_shop_item', 5);
function prima_custom_shop_item() {
global $post, $product;
echo '<p>SKU: '.$product->get_sku().'</p>';
}
Best regards,
Jack Richardson.
You must be logged in to reply to this topic.Log in/Sign up