In my product template, I perform this action:
<?php
do_action('woocommerce_single_product_summary');
?>
What I want is to remove the binding woocommerce_template_single_title, so in my functions.php file I wrote this code:
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_title', 1);
But this does not work, and I do not know how to do it.
thanks for the help
!! EDIT !!
Nevermind I solved this by writing this:
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_title', 5);
Priority must match
source
share