Comments 2vitobharata started the conversationNovember 20, 2016 at 7:14amHello,How do I reorder the single_price in Aurum?I tried this:/* Move price below short description */remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 8 );Is not working. I think that Aurum already hook the single_price to another priority. Can you help me?Thanks,Vito[deleted] repliedNovember 22, 2016 at 4:13pmHi Vito,After slightly modifying your code to this one: remove_filter( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 25 ); add_filter( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 8 );The problem got solved: (view large version) Sign in to reply ...
Hello,
How do I reorder the single_price in Aurum?
I tried this:
/* Move price below short description */
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 8 );
Is not working. I think that Aurum already hook the single_price to another priority. Can you help me?
Thanks,
Vito
Hi Vito,
After slightly modifying your code to this one:
The problem got solved:
(view large version)