christopherjcurtin
Forum Replies Created
-
Hi @wpallimport,
Although I have an import setup that only updates specific fields, in my case product dimensions based on the SKU– it still gives a warning that the title is empty– even though the import doesn’t care about the title.
Am I missing something here?
Thanks!
@crystalairsystem Are you sure that your site has an SSL certificate installed? You need to see the https:// in the URL. Test mode will work because it’s just a test and doesn’t need an SSL. But once in Live Mode, nothing will show since an SSL is required for all credit card transactions.
Forum: Plugins
In reply to: [WooCommerce] Version 2.5.1 and User Registration password strength meterYou can actually keep the warning messages, saying “Your Password is Weak”, but still allow users to register with any password.
There are 5 different strength to return value indicates what strength you will allow a user to register with, if it is set to
0a user can enter a single character as their password, so I would suggest setting to to _at least_1.add_filter('woocommerce_min_password_strength', function(){ return 1; }, 10);