No
Forum Replies Created
-
Forum: Plugins
In reply to: [Direct Stripe] Subscription signup giving users an errorHi @rebeccaz
I had similar issues on my website. The OS and web browser is irrelevant as Stripe is just checking if the connection is fully encrypted with SSL if not the transaction won’t happen.
You have to make sure that you force your WordPress to always use HTTPS instead of HTTP. I did it by editing .htaccess file and changing the full address in Settings >> General according to this article:
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/Please mind that you need to have a backup of your website, as manipulating with this settings can break your whole website. Also as @nahuelmahe mentioned – ask your hosting provider for help. They will know best how to set it up.
- This reply was modified 8 years, 3 months ago by No.
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Some dates in 2013 are "invalid"Do you get any error message from the form?
Maybe it’s just the same case as I had. Try to change the separator for tests.
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Some dates in 2013 are "invalid"I received answer from author:
Dates in the m/d/y or d-m-y formats are disambiguated by looking at the separator between the various components: if the separator is a slash (/), then the American m/d/y is assumed; whereas if the separator is a dash (-) or a dot (.), then the European d-m-y format is assumed.
In other words I just needed to change separator from slash (/) to dash (-] and that solved my issues with “invalid” dates.