Home › Forums › WoodMart support forum › Hide "ADD TO CARD" on Hover Hide "ADD TO CARD" on Hover This topic has 1 reply, 2 voices, and was last updated 3 years, 1 month ago by Luke Nielsen. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts October 18, 2021 at 6:01 am #325859 lisakeyParticipant 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 October 18, 2021 at 11:04 am #325972 Luke NielsenKeymaster 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 Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register