How to display SKU on single product page
-
How can i display SKU on single product pages? I have 0 knowledge of coding so i cannot make any snippets to make this happen. I tried this snippet but it didnt work:
add_action( ‘woocommerce_single_product_summary’, ‘dev_designs_show_sku’, 5 );
function dev_designs_show_sku(){
global $product;
echo ‘SKU: ‘ . $product->get_sku();
}
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘How to display SKU on single product page’ is closed to new replies.