vivekshingala
Forum Replies Created
-
Both the apps (FB and Google) login were working properly before we upgraded our server couple of days ago.
It started giving this error after server upgrade. Apps details are same which were working fine before that.
Hi Emanuela
Thank you for providing other options. However, it did not help fix the issues.
I have recorded the screen and added the link here for your reference. All the toggle button are not working. Once it is set to No, we can’t set it back to Yes. They only change to Yes when we reset all the options.
Also, after resetting the option, we do not get popup object. The object ypop_frontend_var stays undefined all the time.
Screen recording: https://drive.google.com/file/d/10ao7DrWAqlM-eIBaVQwDUtf4eopE8hxu/view?usp=sharing
- This reply was modified 4 years, 11 months ago by vivekshingala.
Hi Emanuela
Could you please help me with this?
Hi @kreamweb
Thank you for your response. We have already selected the default popup and tried to enable Show on all pages but it is still not working.
Screenshot: https://imgur.com/a/NHcJDEu
Forum: Plugins
In reply to: [W3 Total Cache] Minify – exclude single css file with auto modeHi @vmarko
Thanks, it worked!
Forum: Plugins
In reply to: [W3 Total Cache] Minify – exclude single css file with auto modeHi Marko,
I tried to add filename under that field but it didn’t help.
“woocommerce-smallscreen.css” this was added but it was still minified. Will this work or I need to add path starting from wp-content?
Forum: Plugins
In reply to: [Companion Auto Update] Flush permalinks after automatic updateHi,
Is the configuration setting or custom hook after auto update is now possible?
The issue of invalidated permalinks after plugin updates is still persist.
- This reply was modified 7 years, 6 months ago by vivekshingala.
Forum: Plugins
In reply to: [Search Everything] Woo commerce variable product sku is not searchingFacing the same issue for simple products as well. Products have custom attributes though.
Yes, the theme was updated as I can see this on the updates page. However, I am not sure if this message was still there before this email received or not.
Themes
Your themes are all up to date.Also, we still have the old version of theme so I guess it was not updated and just the email but a scary one 😀
Please see below image to get more idea.
Plugin settings
https://snag.gy/fnyJeM.jpgNotification received
https://snag.gy/iXtUMK.jpgAh, I fixed that by enabling below option.
Sub-Menus > Animations > Expand Sub Menus on Parent Item Click option do the same thing which I wanted. Thank you for this awesome plugin.
- This reply was modified 7 years, 11 months ago by vivekshingala.
Forum: Fixing WordPress
In reply to: CSRF mitigation in wp-login.phpDo we have any solution to prevent this on login page?
Forum: Plugins
In reply to: [Companion Auto Update] Flush permalinks after automatic updateThank you for your support and quick replies.
Forum: Plugins
In reply to: [Companion Auto Update] Flush permalinks after automatic updateThank you for your quick response.
Yes, if you can provide a feature to handle custom functions on successful update then it would be great because refreshing permalinks using cron will not be a good idea when we have no updates on a particular day.
What do you think about including permalinks refresh in the plugin itself which is disabled by default and users can enable it, in case if needed, from the settings tab and are aware of the slower update process?
- This reply was modified 7 years, 12 months ago by vivekshingala.
I have identified the issue and fixed it.
have fixed it by setting the parameter enableRemoteConsent to TRUE which is FALSE by default.
According to the official iubenda document, In particular, if you set this parameter (enableRemoteConsent) to true, our solution creates a technical cookie on iubenda.com (domain) which is used when the cookie on the local domain is not found.
This was needed because in iubenda’s javascript library, they are fetching domain name to save cookie using getCookieLocalDomain function which has the issue with country-based TLDs and only “co.uk” is handled. I faced the issue because my domain suffix is “com.au”.
s.prototype.getCookieLocalDomain = function() { var e = null; if (this.options.localConsentDomain) return “.” + this.options.localConsentDomain; if (e = location.hostname, “localhost” != e) { var t = /^[0-9]+$/.test(e.split(“:”)[0].split(“.”).join(“”)); return t || (e = this.stringEndsWith(e, “co.uk”) ? e.split(“.”).reverse().slice(0, 3).reverse().join(“.”) : e.split(“.”).reverse().slice(0, 2).reverse().join(“.”)), “.” + e } return “”