If you have an ecommerce website build with wordPress and WooCommerce platform then this article is helpful for you. As WooCommerce is one of the most popular e-commerce platforms. It consists of a variety of useful and great features that…
Expand +Tag: woocommerce
How to remove product-category slug in WooCommerce?
I was trying to figure out how to remove product category slug in WooCommerce (eg: remove /product-category/ ) from my URLs category and I just couldn’t seem to remove it. For eg: https://tistook.com/product-category/frock I just wanted to be https://tistook.com/frock Finally,…
Expand +How to remove the Password Strength Meter from WooCommerce on the checkout page
In this article, you will learn how to remove the Password Strength Meter from WooCommerce on the checkout page. With latest version of WooCommerce a new feature has been introduced to checkout page :- The Password Strength Meter. Password Strength…
Expand +How to Set Maximum weight for every order in WooCommerce
Hello friends, In this article we w’ll learn “How to set Maximum weight for every order in WooCommerce“. Let’s start if we want to set a limit of 30kg for each order. In WooCommerce, there are several ways to set…
Expand +How to Set Minimum Weight in WooCommerce Orders
Hello friends, In this article we w’ll learn “How to set Minimum weight for every order in WooCommerce“. Let’s start if we want to set a limit of 30kg for each order. In WooCommerce, there are several ways to set…
Expand +Gravity Forms Woocommerce Product Add-on not sending notifications
By default, Gravity Forms Add-Ons does not send email notifications when they are assigned to a product. The change below will enable Gravity Forms to send the notification. Woocommerce Gravity Form add-on Fix: gravityforms-product-addons.php, line: 567
2 3 4 5 6 7 8 9 10 11 12 |
function disable_notifications( $disabled, $form, $lead ) { return true; } We changed true to false. function disable_notifications( $disabled, $form, $lead ) { return false; } |