Moving the SKU above the Procut title in single product page
-
Is there a way i can move the P/N: above the tittle this is the current code i have input in the functions.php
add_action(‘woocommerce_single_product_summary’, ‘add_sku_to_product_page’, 5);
function add_sku_to_product_page() {
global $product;
echo ‘P/N: ‘ . $product->get_sku() . ”;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Moving the SKU above the Procut title in single product page’ is closed to new replies.