Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Anna Schneider

    (@anna_werner)

    Thanks for using the plugin ??

    You can use this code in your child theme functions.php:

    // Remove Woo USPs after product summary
    remove_action( 'woocommerce_single_product_summary', 'wc_usp_table' );

    // Add Woo USPs after short description / before add to cart form
    add_action( 'woocommerce_before_add_to_cart_form', 'wc_usp_table' );

    Thread Starter freddyeee

    (@freddyeee)

    thank you !

    that code adds the section after the short description, but doesn’t remove the original , how to get that ?

    Plugin Author Anna Schneider

    (@anna_werner)

    Try adding a priority to this line:
    remove_action( 'woocommerce_single_product_summary', 'wc_usp_table', 33 );

    Plugin Author Anna Schneider

    (@anna_werner)

    Hi @freddyeee,
    did the updated code work?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change section placement’ is closed to new replies.