How to move Product Variation Price above SKU

I am working on Porto Woo-commerce theme. I am trying to move product variation price above sku code. I have found a code.

function move_variation_price() {
    remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation', 10 );
    add_action( 'woocommerce_before_variations_form', 'woocommerce_single_variation', 10 );
}
add_action( 'woocommerce_before_add_to_cart_form', 'move_variation_price' );

which bring price to above variation but not above sku. I have try many class but it didn’t work. Is there any way to move the price above SKU ?

Here is the Link for referance: http://maplesotre.vista.net.pk/product/michael-fassbender-brown-x-men-leather-jacket/

I can not see a product variation price above the SKU so I assume you have fixed it? I have had a little experience with woo-commerce but that is normally something you change in the template options.

I assume this site is work in progress as the colour option prices are in $ not £.

This is what i am looking for. I want to move Product Variation price before SKU

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.