WooCommerce: How Do I Show Product Sku on Category Page?

Add this to functions.php in your child theme:

/**
  * Function to Add SKU to Category Pages
  * Date: July 15, 2020
  * King Rosales
  */

add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_after_shop_loop_item_sku_in_cart', 20, 1);
function woocommerce_after_shop_loop_item_sku_in_cart( $template ) {
global $product;
$sku = $product->get_sku();
echo $sku;
}

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.