I am trying to move the variation description from the product-summary to below the title and above the price.
I have tried this code:
add_action('plugins_loaded', 'move_variation_description', 50);
function move_variation_description(){
// Remove the hook from the original location
remove_action( 'woocommerce_single_product_summary', array(
WC_Variation_Description::get_instance()->frontend,
'add_variation_description' ), 25 );
// Re-add the hook to where you want it to be
add_action( 'woocommerce_before_single_product_summary', array(
WC_Variation_Description::get_instance()->frontend,
'add_variation_description' ), 25 );
}
But without any success. Code from Here doesn't seem to work either.
Any help is greatly appreciated.
Thank you.