Forum Replies Created
-
I found the issue with frontend manager plugin, our team will release a new version to fix it.
Have a nice day
AG
Hi again,
this is the last answer from my customer:Hi Andrea,
i deactivate all my plugins except BuddyPress, WooCommerce, YITH Frontend Manager for WooCommerce Premium and YITH WooCommerce Multi Vendor Premium, and i remove my theme’s functions.php and bp-custom.php ( the buddypress file customisation ) but i have the same issue, the probleme disappears only when i deactivate YITH Frontend Manager for WooCommerce Premium.
Watch the video to understund.
i think it’s an ajax issue ,the problem occurs when i’m in buddypress page and I click on a button that requires ajax, only when i’m connected with vendro account.
http://recordit.co/ncfABt1ErP
in the 2nd video yith frontend manager is deactivatedhttp://recordit.co/97vyc8reeI
in the 3rd video it’s in my local environment with an other themeI hope this has helped you
have a good night
AhmedDo you have another idea ? I have tried to replicate the issue but without success, if you want I can send a copy of our plugins…probably you understand how replicate this issue.
Let me know.
ThanksHave a nice day
AGok, I’m checking it….
Hi,
no I’m not. I think….I have an option to prevent Shop Manager view WordPress backend, probably you use some backend action ? Or you can try to access to some page in WordPress admin area (e.g.: with an ajax call) ?
Let me know.
thanks for your help.Have a nice day
Andreathe semantics of the media query is wrong. In fact, a media query must be written in this way:
@media screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) { .my_selector { -webkit-text-size-adjust: none; } }
You can not write a media query without putting a rule selector.
Normally this is not problems because it is located at the end of the file. Conversely, when I create a file with w3 total cache minify, the presence of this rule stops me running subsequent rules causing an error in the layout of the site.Your rule haven’t any css selector:
@media screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) { -webkit-text-size-adjust: none; }
I hope I was clear.
See here: https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries#device-aspect-ratio
Thanks!