add sku to product category results page
-
How do I display the SKU under the price?
I’ve tried this code and it isn’t working
add_action ( 'woocommerce_after_shop_loop_item_title', 'custom_after_title' ); function custom_after_title() { global $product; if ( $product->get_sku() ) { echo $product->get_sku(); } }
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘add sku to product category results page’ is closed to new replies.