Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1606656
TheGem hooks
Closed

Comments

  • Giuseppe started the conversation

    Hi, I need some technical information. Is it possible to remove / overwrite The TheGem hooks in the “woocommerce.php” file inside the “inc” folder? 

    I tried to remove them via the theme-child functions.php, using the remove action without success. The same goes for adding custom hooks for customizing woocommerce.

    Thanks

  •  7,095
    Oliver replied

    Hi,

    What hook or action you need to remove?

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Giuseppe replied

    Hi,

    I need to remove hook verses. 

    Could you explain how to do it in general in my theme-child?

    Thanks

  •  7,095
    Oliver replied

    Here is an example:

    function thegem_child_woocommerce_output_related_products() {
        remove_action('thegem_woocommerce_after_single_product', 'woocommerce_output_related_products', 5);
    }
    add_action('init', 'thegem_child_woocommerce_output_related_products');
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • Giuseppe replied

    Thank you!

  •  7,095
    Oliver replied

    Welcome!

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver