I would like to disable the option to gift coupons to someone else. Is there a way to hide this?
Screen shot
Check out this short article on how to disable or hide the coupons in WooCommerce plugin: https://www.skyverge.com/blog/hide-woocommerce-coupon-fields
Related
Does anyone know how to hide the Stripe fees from the Woocommerce order page in the back end. It's displayed under the total the customer pays for an item and it just repeats the total again along with the Stripe fee. It feels quite unnecessary and I was hoping a simple css code would hide it. Here is a screenshot of the part I'm trying to hide/remove: https://prnt.sc/A4VmaJ-Pxc_u
I'm not the best with CSS so the simpler the better really, thank you very much in advance.
Haven't tried anything yet, am hoping a simple CSS code will resolve this.
You can use filters to hide. Add following filters in your functions.php
//Hides the Stripe fee
add_filter( 'wc_stripe_hide_display_order_fee','__return_false');
//Hides the net total of the transaction without the charges of Stripe.
add_filter( 'wc_stripe_hide_display_order_payout','__return_false');
I want to uncheck all the payment methods available in my woocommerce store, remember I don't to remove or disable any of payment methods.
Any help is appreciated.
I've done this by editing checkout.min.js of woocommerce plugin e.eq(0).prop("checked",!0) to e.eq(0).prop("checked",0)
If anyone has better option please let me know.
I want to show tax rate in woocommerce mini cart like this-> http://nimb.ws/gBGAD0 display on checkout page. That's possible? If possible please let me know.
Thanks.
In woocommerce (for wordpress) I would like to restrict coupon usage to one payment option. What is the best way to go around it?
I need to create a woocommerce multistep shopping cart. I tried to use this plugin(Woocommerce multi step checkout) but It's working only on checkout process. I need to add it on shopping cart as well. Please follow this image. This is how my shopping cart looks like.
1) I'm selling perfumes. so when someone adds a product to cart I need to display a popup to choose free sample of that product.It also need to add to the cart as a free item.
2) and then I need to follow those 5 steps like this image.
Can someone help me ? Your help is highly appritiated.
Thanks.
I know this is an old post but have a look at the following extension by WooCommerce:
http://docs.woothemes.com/document/product-add-ons/
Might not be a full solution to your requirements but would at least provide you with the functionality you require.