indreshyadav
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Regarding warning text when using discount codehello
@isabella92
Are you using WooCommerce-3.9.1?
if “discount code aldready used” message is showing when you trying to place order then you can use following code. It will help you.add_filter(‘woocommerce_hold_stock_for_checkout’, ‘test_coupon_time’); function test_coupon_time() { return false; }Forum: Plugins
In reply to: [WooCommerce] Problem installing woocommercehello
@arnauespina go to the wp-content/plugins/ and check if there is woocommerce folder the rename it and then go to the plugins dashboard and download the new woocommerce and install it. try this once, it will help you.Forum: Plugins
In reply to: [WooCommerce] woocommerce coupon “already used” 3.9.1hello
@allenfreeman
No neagtive effects.
please see this post for actual issue.
https://wordpress.org/support/topic/coupon-already-used/Forum: Plugins
In reply to: [Coupon Generator for WooCommerce] Coupon already usedHello
@francisco2611 @francisco2611
This issue is not from woocommerce core, in woocommerce 3.9.0, wooconnerce added the restriction to coupon for multipale transaction at same time.
which plugin you are using to generate or import coupon. the issue in that plugin
if you want to check go to coupon edit page and update that coupon and it’s working fine.Forum: Plugins
In reply to: [WooCommerce] Hide “Shipping to CA” from carthello
@robbyparker00
you can use following code to add in your theme custmizer
it will help you.`.woocommerce-shipping-destination {
display: none !important;
}Forum: Plugins
In reply to: [Coupon Generator for WooCommerce] Coupon already usedhello,
@allenfreeman @erfanit
you can use the following code in ‘functions.php’ ,it will helpfull for you.add_filter(‘woocommerce_hold_stock_for_checkout’, ‘test_coupon_time’);
function test_coupon_time() {
return false;
}Forum: Plugins
In reply to: [WooCommerce] woocommerce coupon “already used” 3.9.1hello,
@allenfreeman you can try with following code, it will help you.
add_filter(‘woocommerce_hold_stock_for_checkout’, ‘test_coupon_time’);function test_coupon_time() {
return false;
}Forum: Plugins
In reply to: [WooCommerce] How to give access to woocommerce only?hello,
@jsima you can use
https://wordpress.org/plugins/user-role-editor/
It will help you.