Hello there, thanks for the awesome free template
I’m trying to remove the function from this hook listed in leto/inc/woocommerce.php
line 33:
…
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘leto_loop_pricing_button’ );
…
by using this hook inside the the child’s functions.php
:
function remove_leto_loop_pricing_button()
{
remove_action( ‘woocommerce_after_shop_loop_item_title’, ‘leto_loop_pricing_button’ );
}
add_action(‘wp_loaded’, ‘remove_leto_loop_pricing_button’);
Please help me, it’s not working, thanks in advance.