Mina
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] hide coupon on checkout?This may be helpful. It will hide coupons from all pages of site.
add_filter( ‘woocommerce_coupons_enabled’, ‘pbs_hide_coupon_from_everywhere’ );
function pbs_hide_coupon_from_everywhere( $enabled ) {
return false;
}With that settings your coupons list page in Admin Panel should look as per above link.
- This reply was modified 8 years, 5 months ago by Mina.
Look at this settings: Coupon Settings
Make sure you have set usage limit per user to 1 as well.
Forum: Plugins
In reply to: [WooCommerce] Skip product page and go straight into checkoutThat’s Great. I am glad it was useful.
Forum: Plugins
In reply to: [WooCommerce] Skip product page and go straight into checkoutForum: Plugins
In reply to: [WooCommerce] Skip product page and go straight into checkoutCan you share the site URL?
Forum: Plugins
In reply to: [WooCommerce] Display Product when inventory is zeroForum: Plugins
In reply to: [WooCommerce] Display Product when inventory is zeroI am glad your issue is resolved. Have a good time.
- This reply was modified 8 years, 5 months ago by Mina.
Forum: Plugins
In reply to: [WooCommerce] Display Product when inventory is zeroImportant Note: You have to uncheck “Hide out of stock items from the catalog” option on WooCommerce->Settings->Product->Inventory Tab from WordPress Admin Panel
Forum: Plugins
In reply to: [WooCommerce] Display Product when inventory is zeroIt will goes to your child theme’s functions.php file
If you want to have multiple product use if statement like this.
if( ($productId == 6838) || ($productId == 6838) )Forum: Plugins
In reply to: [WooCommerce] Display Product when inventory is zeroHere is a code snippet to do that: https://gist.github.com/MinaPansuriya/6599c704c939850f4a136bd13de1f75a
Hope this will be helpful.
Forum: Plugins
In reply to: [WooCommerce] Display Product when inventory is zeroCheck this code snippet: https://gist.github.com/MinaPansuriya/6599c704c939850f4a136bd13de1f75a
Forum: Plugins
In reply to: [WooCommerce] Display Product when inventory is zeroHi,
You would like to just display the product or want user to be able to place order for Out of Stock items as well?
Forum: Plugins
In reply to: [WooCommerce] change link – add to cart pageFunction is well tested and works.
Can you please let me know where did you copy this code?
Which theme you are using?Forum: Plugins
In reply to: [WooCommerce] Price show decrease after choosing “Price inclusice of Tax”Please give your site URL