How can I display the sku of each product in category woo commerce page?
This topic has 4 replies, 3 voices, and was last updated 9 years, 9 months ago ago by Robert Hall
How can I display the sku of each product in category woo commerce page?
Hello,
You need add this code in functions.php file:
add_action( 'woocommerce_after_shop_loop_item', 'custom_shop_item', 5);
function custom_shop_item() {
global $post, $product;
/* product sku */
echo '<p>SKU: '.$product->get_sku().'</p>';
}
Regards,
Eva Kemp.
thank u. u fix it!
Hello,
You’re welcome!
Regards,
Robert Hall
The issue related to '‘display sku in category woo page’' has been successfully resolved, and the topic is now closed for further responses