webaware
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Map] I am not sure what option use new “gesturehandling” atribtuteG’day ramonjosegn,
For mobile, cooperative is best because it lets visitors scroll the page without interruption. This is the plugin default. Visitors are prompted to use two fingers to move the map around when they try to move it with one finger.
It’s also the best for desktop because scrolling the page with the mouse scroll wheel has the same issues, and cooperative prompts the visitor to use the CTRL or ⌘ key if they want to zoom with the scroll wheel.
The auto setting should also do this, because it detects when to use cooperative and when to use greedy, but sometimes it gets confused and then it becomes hard to scroll the page again.
In my opinion, unless your map is the only thing on your page and visitors can always access navigation, you should always use cooperative. Since this is the plugin default, you don’t need to specify it — so leave out the gesturehanding attribute (and also don’t use dblclickzoom, draggable, scrollwheel). Only add attributes when you need to change from the defaults.
cheers,
RossForum: Plugins
In reply to: [Flexible Map] Map Cannot Be Displayed@enfi you need to create and add an API key. See here:
https://flexible-map.webaware.net.au/manual/api-keys/
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Make Credit Card fields appearYou can delay creating a post with a setting on the feed. Under “Hosted Page Settings”, you’ll find a checkbox for “Create post only when transaction completes”.
But sounds like the form isn’t even trying to submit to Payment Express, so please contact me on my support form so that I can ask you for more details (i.e. not public).
https://shop.webaware.com.au/support/
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Make Credit Card fields appearYou need to have a Product field with a price, and you also need to add a feed to your form.
How do I build a form with credit card payments?
- add one or more Product fields or a Total field to your form. The plugin will automatically detect the values assigned to these pricing fields
- add customer name and contact information fields to your form. These fields can be mapped when creating a DPS PxPay feed
- add a DPS PxPay feed, mapping your form fields to DPS PxPay transaction fields
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Make Credit Card fields appearG’day virtualtopia,
You don’t add credit card fields to your form. Once the entry has been submitted, if there’s something to bill (i.e. a product with a price) then the visitor will be redirected to a Payment Express page to enter their card details. Afterwards, they are redirected back to your website.
cheers,
RossForum: Plugins
In reply to: [Flexible Map] Conflict with address autocompleteG’day,
The problem is that both plugins are loading the Google Maps API. I’ve just added a setting that you can tick to prevent this plugin load the API script, which resolves the problem. Please install this version and change the plugin settings:
https://www.dropbox.com/s/auu6xqziiktbv8l/wp-flexible-map-1.16.0-dev.zip?dl=1
I hope to release it sometime in the next couple of weeks, but this will work in the meantime.
cheers,
RossForum: Plugins
In reply to: [Disable Emails] Emails Still SendingG’day jmcatron,
Do you use something to set SMTP login credentials? If so, that’s almost undoubtedly overriding this plugin.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Not working on my blogG’day gustavotonini,
Please run the tools check page:
Tools > SSL Tests
Copy what it says after “Your server environment shows this:”, and send it to me please via my support form (i.e. don’t post it here in case there’s something sensitive there).
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Suddenly Locked out (404) of admin areaG’day @druid75,
Please add the following code to your wp-config.php file, near the top:
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { $_SERVER['HTTPS'] = 'on'; }You can then delete the plugin and should be able to access your admin.
I can’t imagine why you’d be getting 404 errors with the plugin activated. Can you list the active plugins on your website please? It might be an interaction with one of them.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] My Home Page is InsecureG’day navins,
Have you changed your site URL and home URL to HTTPS? That’s in general settings:
Settings > General
If you want to force your website to be totally HTTPS, here’s how to do it for Apache web server via your .htaccess file:
RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule . https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]For nginx, use separate server blocks for HTTP and HTTPS, like this:
server { listen 80; server_name example.com; return 301 https://$server_name$request_uri; }NB: if you have had this server for some time and expect there to be some form posts to your website on HTTP, replace 301 with 307.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Was always secure now mixedG’day Mike,
Wow. That’s rather rubbish isn’t it? Just tried a fresh one from the website, and yes, it redirects to http!
https://imageshack.com/a/img538/6941/ATDxcC.jpg
Not much you can do about that, really, except remove those images.
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Still getting Insecure contentG’day mayurichauhan,
It’s reporting these errors:
Mixed Content: The page at ‘https://www.mariannas.com/’ was loaded over HTTPS, but requested an insecure image ‘http://www.mariannas.com/wp-content/uploads/2018/01/mariannas-default-logo-white-1.png’. This content should also be served over HTTPS.
Mixed Content: The page at ‘https://www.mariannas.com/’ was loaded over HTTPS, but requested an insecure video ‘http://www.mariannas.com/wp-content/uploads/2018/01/mariannas-bg-video.webm’. This content should also be served over HTTPS.If you can track down where your website is setting those, you can fix them.
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Error 405G’day Sholls,
First: your last message has your Gravity Forms key in it, so I’m hoping that a moderator will edit the message to obfuscate the key, or that you will! Don’t hand out your licence key.
Now, I’ve obtained a copy of the WooCommerce add-on for Payment Express, and I can run the two payment add-ons together without problem. Here’s what I tested on:
* WordPress 4.9.7 / PHP 7.2
* Gravity Forms 2.3.3.1
* Gravity Forms DPS PxPay 2.1.0
* WooCommerce 3.4.3
* WooCommerce Payment Express Gateway 2.8AH! Whilst typing this up, I was waiting on a very slow form submit on your website, which finally failed with an nginx 405 error. This indicates some problem on your server. You need to speak to your website host and get them to look at the server logs to see where this is failing.
Because it’s taking a while to fail, I reckon it’s a network timeout somewhere along the line. Tell your host that the plugin is trying to connect to the following URL before redirecting to the Payment Express website, it might help them work out what the failure is.
https://sec.paymentexpress.com/pxaccess/pxpay.aspx
cheers,
RossForum: Plugins
In reply to: [GF Windcave Free] Error 405G’day sholls9,
You’ll see a couple of entries come through from a bloke called Test Only — just me! 🙂
So, the form isn’t currently going through to Payment Express, so I presume you’ve deactivated the feed for now. If not… best turn on logging and see what it’s saying.
https://docs.gravityforms.com/logging-and-debugging/
405 is an odd error for you to be getting. It should only happen if a POST is being sent to a URL that only allows a GET, or similar to that. I’ve rested both of my DPS Payment Express plugins (Gravity Forms and WP eCommerce) and they both work OK still, so it’s not likely to be the plugin.
When I looked at your WooCommerce shop, I couldn’t attempt a checkout there because of a JavaScript error with ACF — Advanced Custom Fields. You should get that fixed or you won’t get any sales!
A while back, I had to add a fix to the Gravity Forms add-on to stop WooCommerce’s DPS Payment Express add-on grabbing Gravity Forms payments. It’s possible that the WooCommerce add-on has been changed and is again interfering with the Gravity Forms add-on. I’ll see if I can track down a recent copy and see if it’s doing that again.
Finally, have you ensured that your website is TLS 1.2 compatible? Install this plugin to check:
https://en-nz.ww.wp.xz.cn/plugins/tls-1-2-compatibility-test/
cheers,
RossForum: Plugins
In reply to: [SSL Insecure Content Fixer] Mixed ContentYay!
It’s always tricky when the problem hides in a CSS file. You need to look in each stylesheet to find the problem. Easy enough if you know to look there 🙂
cheers,
Ross