Okay
  Public Ticket #961552
Reorder Price Location in Single Product Page
Closed

Comments

  •  2
    vitobharata started the conversation

    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

  • [deleted] replied

    Hi 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)