Hide "ADD TO CARD" on Hover
-
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
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