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' );
thank you !
that code adds the section after the short description, but doesn’t remove the original , how to get that ?
Try adding a priority to this line:
remove_action( 'woocommerce_single_product_summary', 'wc_usp_table', 33 );
Hi @freddyeee,
did the updated code work?