Answer the question
In order to leave comments, you need to log in
How to display product SKU on Woocommerce category page?
Good afternoon, tell me how to display the SKUs of goods on the page for issuing category goods?
Answer the question
In order to leave comments, you need to log in
Resolved the issue:
add_action( 'woocommerce_after_shop_loop_item_title', 'shop_sku' );
function shop_sku(){
global $product;
echo '<span itemprop="productID" class="sku">SKU: ' . $product->sku . '</span>';
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question