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

Hide "ADD TO CARD" on Hover

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #325859

    lisakey
    Participant

    Good morning,

    I want to hide the “ADD TO CARD” on hover on the product’s pictures at all.
    COuld you provide me a snippet to do that?

    Best regards
    Lisa

    #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

Viewing 2 posts - 1 through 2 (of 2 total)