Home Forums WoodMart support forum Hide "ADD TO CARD" on Hover Reply To: Hide "ADD TO CARD" on Hover

#325972

Luke Nielsen
Keymaster

Hello,

In order to remove the “Add to cart” button on hover, try to add this code to the functions.php file in your child theme.

if ( ! function_exists( 'wd_remove_add_to_cart_button' ) ) {

    function wd_remove_add_to_cart_button() {
        remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
    }

    add_action( 'wp', 'wd_remove_add_to_cart_button', 240 );
}

Kind Regards