Display Vendor Policies on the Vendor Shop Page
By default, we only show the Vendor Policies on the Single Product Page. Please use the…
How to Display Store Credits Earned in WooCommerce New Order Emails
Add this to your "New Orders" email template from WooCommerce > Settings > Emails
Block specific coupons during set hours
/** * Block specific coupons during set hours (1:00 PM - 3:00 PM) */ function block_coupon_during_specific_hours($valid,…
Hide uncategorized from widget shop
Hide uncategorized category from widget in WooCommerce
Change name On Hold status WooCommerce
Change name On Hold status WooCommerce
Restrict payment methods based on cart total
Restrict payment methods based on cart total
Remove field checkout WooCommerce
Remove field checkout WooCommerce
Year footer update
Update copyright year automatically in footer
Disable wp-embed.min.js
Disable wp-embed.min.js
WooCommerce Delivery Address Popup – Sync Address in Header & Checkout
Enhance your WooCommerce store with an Amazon-style "Deliver to" address popup. Allow customers to select or…
Add Wholesale Order Form Favourites Button Functionality To WooCommerce Single Product Pages
Works hand in hand with the WooCommerce Wholesale Order Form plugin to provide product favouriting functionality…
Remove All Campaigns From a Specific URL
document.addEventListener('om.Campaign.startShow', function(event) { if(window.location.href == 'https://example.com/specific-page') { // replace with your specific URL var optinCampaign =…
Remove Specific Campaign From a Specific URL
document.addEventListener('om.Campaign.startShow', function(event) { if(window.location.href == 'https://example.com/specific-page') { // replace with your specific URL var optinCampaign =…
Remove Specific Campaign From Any URLs Containing a Specific URL Path
document.addEventListener('om.Campaign.startShow', function(event) { if(window.location.search.indexOf('shopping-cart') > -1) { // replace shopping-cart wtih your specific URL path var…
Remove Specific Campaign Based on the Referral URL
document.addEventListener('om.Campaign.startShow', function(event) { if(document.referrer.search.indexOf('google.com') > 0) { // replace with the specific referral domain var optinCampaign…