Remove "Add to Cart" functionality on the search page

On the Search Results page, you don't want to be redirected to the cart page when clicking the "Add to cart" button. You need to add the following code to the functions.php file in your child theme.

add_filter( 'ovabrw_ajax_add_to_cart', '__return_false' );

Last updated