Post Published on March 5, 2024
Last Updated on by Sharat Nair
Here are three simple ways to take off the ‘Add to Cart’ button from certain product pages:
Step 1
Take out the price. Then the product won’t have a price anymore, and the ‘Add to Cart’ button will disappear.
Step 2
Turn on stock control and change the product amount to zero.
Step 3
Use the filter for the woocommerce_is_purchasable hook.
add_filter('woocommerce_is_purchasable', 'woocommerce_cloudways_purchasable'); function woocommerce_cloudways_purchasable($cloudways_purchasable, $product) { return ($product->id == your_specific_product_id (like 22) ? false : $cloudways_purchasable); }