Remove Woocommerce Title Hook

In my product template, I perform this action:

<?php
    /**
     * woocommerce_single_product_summary hook.
    *
    * @hooked woocommerce_template_single_title - 5
    * @hooked woocommerce_template_single_rating - 10
    * @hooked woocommerce_template_single_price - 10
    * @hooked woocommerce_template_single_excerpt - 20
    * @hooked woocommerce_template_single_add_to_cart - 30
    * @hooked woocommerce_template_single_meta - 40
    * @hooked woocommerce_template_single_sharing - 50
    */
   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

+4
source share

Source: https://habr.com/ru/post/1671122/


All Articles