Viewing 3 replies - 1 through 3 (of 3 total)
  • You can use this code

    add_action( 'woocommerce_single_product_summary', 'dev_designs_show_sku', 5 );
    function dev_designs_show_sku(){
        global $product;
        echo 'SKU: ' . $product->get_sku();
    }
    Thread Starter panospibby

    (@panospibby)

    thanks for your prompt reply

    I tried the code in: function.php (child)
    but nothing has changed.

    whether it wants to in the main theme or whether I should add it to wooproduct single?

    I have the SKU on the page I just want to transfer it below the price.

    thank you

    • This reply was modified 3 years, 11 months ago by panospibby.
    Thread Starter panospibby

    (@panospibby)

    Ok it worked. thank you!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Move SKU’ is closed to new replies.