Reputation: 45
I want to change Add to cart Button in woocommerce, wordpress with Product Enquiry Form/Button. My Current wordpress version is 4.8.1 and woocommerce version is 3.1.2. Can somebody pls help me.
Upvotes: 2
Views: 12417
Reputation: 1433
To deactivate add to cart button place the following code to your theme's functions.php
add_filter( 'woocommerce_is_purchasable', false );
Now coming to the part of showing enquiry form in product page, there are many free plugins to do that, so you don't have to write a single piece of code.
Here is one that I was using for that. This will add a enquiry form to your product details page.
Upvotes: 2