Is it possible to deactivate the plugin in specific places?

[ad_1]

Is it possible to deactivate the plugin in specific places, i.e the cart. I would like to leave woocommerce defaults on my cart page.

Reply is: Yes, It’s possible using filter hook: ‘wqpmb_show_validation’.

See Example code on Gist: https://gist.github.com/codersaiful/57668602f08f017c4bbfd466cdfff1cb
Also here:

/**
 * Disable Plus minus button for specific page
 * such: cart page, checkout page,
 * using filter hook: 'wqpmb_show_validation'
 * 
 * There are few filter hook
 * wqpmb_show_validation bool filter hook
 * wqpmb_on_product_page bool filter hook 
 * wqpmb_on_cart_page bool filter hook
 * wqpmb_on_mini_cart_page bool filter hook
 * wqpmb_template_on_off bool filter hook
 * 
 * wqpmb_template
 * 
 * @author Saiful Islam <[email protected]>
 *
 * @return bool
 */
function ca_custom_off_plus_minus_specific($validation, $datas){
	if( is_cart() ){ //you can use any other page condition.
		return false;
	}
	return $validation;
}
add_filter('wqpmb_show_validation', 'ca_custom_off_plus_minus_specific', 10, 2);

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer