paulgc34
Forum Replies Created
-
I agree, this plugin is great however the name field should be an optional field. I’ve been waiting for quite some time hoping an update would be available with this option.
Do you plan to add this option to the plugin?
Hi Charlie,
As I logged in to my site I noticed the plugin is now working. I also notice it’s now using version 1.7.2 and the unresponsive script error was happening with version 1.7.1
I’m not sure when version 1.7.2 came out and my site automitacally updated the plugin to the latest version. Version 1.7.2 is working fine.
So everything looks like it’s good to go now.
Is there any way to download version 1.65 so I can use that until a fix is available? I just do not want to have an unresponsive script locking up the screen.
I am having the same problem. Will the update be available soon?
Forum: Plugins
In reply to: [Rich Reviews by Starfish] Form error and success messages to load via ajaxYes, I would love to see this in a future update.
Thank you Charlie
Previously I stated that duplicating the product and deleting the old one was not working but I was wrong. Guess I jumped the gun on that one a little bit.
Anyways, I have several products but only one was triggering this error so I duplicated the erroneous product, deleted the original, then renamed the newly duplicated product’s title and slug to match what it was before. Now it’s working fine but be warned this will wipe out all prior woocommerce reporting stats for the product.
I did check my “Saved Cards” settings and it was checked. I have unchecked it (regarding nathanbland’s comment) hoping that it will prevent future issues.
I get the same error on one of my products. Everything worked fine when I first installed this plugin some time ago. Recently one of my products started showing the error “Error: There was a problem connecting to the payment gateway.” and I can not figure out why.
I have duplicated the product and removed the original but the error is still preventing sales.
Forum: Themes and Templates
In reply to: [Flat Bootstrap] How to remove the Oembed fixed hieght of 720pxI was able to successfully replace the oembed defauls with fitvid.js. I found good documentation to load the fitvid.js here: https://wptheming.com/2014/05/responsive-video-fitvids/
Forum: Plugins
In reply to: [EMC2 Popup Disclaimer] shows on every page load even after acceptingI found the code for the cookie setting in the plugin at
/js/jquery_cke.jsHere’s the function for the cookie:
(function($) { $.cookie = function(key, value, options) { // key and at least value given, set cookie... if (arguments.length > 1 && (!/Object/.test(Object.prototype.toString.call(value)) || value === null || value === undefined)) { options = $.extend({}, options); if (value === null || value === undefined) { options.expires = -1; } if (typeof options.expires === 'number') { var days = options.expires, t = options.expires = new Date(); t.setDate(t.getDate() + days); } value = String(value); return (document.cookie = [ encodeURIComponent(key), '=', options.raw ? value : encodeURIComponent(value), options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE options.path ? '; path=' + options.path : '', options.domain ? '; domain=' + options.domain : '', options.secure ? '; secure' : '' ].join('')); } // key and possibly options given, get cookie... options = value || {}; var decode = options.raw ? function(s) { return s; } : decodeURIComponent; var pairs = document.cookie.split('; '); for (var i = 0, pair; pair = pairs[i] && pairs[i].split('='); i++) { if (decode(pair[0]) === key) return decode(pair[1] || ''); // IE saves cookies with empty string as "c; ", e.g. without "=" as opposed to EOMB, thus pair[1] may be undefined } return null; }; })(jQuery);
Does anyone know how to configure this so the popup will only popup once per session after clicking on the Accept button?
Thanks in advance.
Forum: Plugins
In reply to: [EMC2 Popup Disclaimer] shows on every page load even after acceptingI’m having the same issue. It’s not popping up on every single page but most of them. It seems to be worse in google chrome. I’m thinking it has something to do with the cookie setting in the plugin.
Forum: Plugins
In reply to: [EMC2 Popup Disclaimer] shows on every page load even after accepting???