hetsfield
Forum Replies Created
-
Thank you Marta,
your CSS made the trick.Have a lovely day
Thanks guys from the following up.
It seems that the new version made the trick. It works.
Case closed ??Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Amazing but slow and i don’t find whyHi Oleg,
thanks for taking the time to reply.
I set up as per your instruction the free plugin’s option already.
It was more or less my existing set up in any case.The plugin’s work great, i’ll work with my server side to improve it.
Indeed, sorry about that.
had to reset properly the cache on all my mobile phones and now it works perfectly as usually.Thanks guys!
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Amazing but slow and i don’t find whyThanks Dima.
i don’t know how to use this plugin but allow me to try.
I found out a total of 591 query.
Berocket plugin represent a total of 6 queries.See the picture.
I have zero RED COLOR time for all my queries so all are resonnable speed i guess? but please note that if i filter by time (slow to quicker), the berocket queries are on the top, meaning the heavier one to load?
Thanks
Hi guys,
any update on the below:
Still, here is a new bug generate with the 1.9.0.
On Mobile version only (again, AVADA THEME, last version), search button or CLOSE button isn’t available.
As a result, once click search on mobile, if you do not type any search, you can’t close the full page windows.Please check, it’s now live on the website.
Hi Clint,
thanks. Since there is a new update with rebranding 1.9.0. I gave it a shoot.
The goods news is that it solve the issue with AVADA THEME.
No more search bar in the footer.
The plugin is properly located in the header / menu and work.Still, here is a new bug generate with the 1.9.0.
On Mobile version only (again, AVADA THEME, last version), search button or CLOSE button isn’t available.
As a result, once click search on mobile, if you do not type any search, you can’t close the full page windows.Please check, it’s now live on the website.
Hi,
Sadly I can confirm the plug-in isn’t compatible with SG optimizer ( eventually plus Avada running on ).
Had to use another one.
If you guys some the issues, let us know in a next update, we ll be happy to use your pluginSorry that because I am currently getting good traffic, i had to revert back manually to the 1.8.1 version.
1.8.1 version
Wordpress 5.6.2
It works perfectly.Actually with AVADA, the plugin’s 1.8.2 creates two bugs on my website:
– 2 search bar appears on top of the other in the footer, full width. If you check the elements, it’s really the theme that call back two divs, under the footer with the ajax search bar.
– the search on mobile once trigger cannot be closed as the arrow to go back isn’t visible any more.For now, i keep the 1.8.1 and i’ll wait more stable version or Avada update.
Hi guys,
completed.
It worked. The main mistake was that i selected english language when i setup the backend of the feed in google merchant account.Also, making change, need to wait 24 to 48 hours to see the products “approved” in google back-end.
All solved, thanks!
Hi,
thanks.
I created a new feed and connect it again to google merchant being careful to select the country + language to JAPAN this time.I can see from the overview that products start to become ACTIVE (green), but when i click on product / diagnostic, still all rejected for price reason despite each individual product being active.
My guess is that i need to wait maybe 24hours or 48hours to let GOOGLE implement the feed properly.
I ll come back and post screenshot if it is not automatically resolved by then.
In case you need the debut log.
https://www.backafter.com/wp-content/uploads/woo-product-feed-pro/logs/debug.log
Thanks for your reply.
I did input in the JPY PREFIX.
But note that the field “PRICE” automatically changes into “g:price” when saved.If i look at the merchant account backend:
– number of product listed OK
– products > all goods > statuts = 99% are ACTIVE
– products > diagnostic = 0 product valid, No value [Price] (country Japan).Is it because I’m using WPML and my articles are usually created in english, then WPML translated to Japanese? The price info is locked to the english page and isn’t editable in the product japanese page.
In WPML Japanese is the default language, but we always create product in english first to easy process.
I understand the ELITE version add the support of WPML.
Can you confirm that we must have the ELITE version to get our products listed?Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Coupon does not applySolved.
Issues with caching ( site ground ) and CDN cloud flare
Clear the cache and go to go.
Hi,
for people using this great plugin’s with AVADA theme (or other just need to find out related class by inspecting elements).
see it live on https://www.backafter.com/en
This is the jquery script that worked for me.
RESULT: FLYOUT (MOBILE) + DESKTOP Avada Theme cart trigger the AJAX CART MODAL.
Go to wp-admin >> avada >> options >> advanced >> code fields
input SCRIPT in the BODY as below.
<script type=”text/javascript”>
jQuery(document).ready(function($){
$(‘body’).on(‘click’, ‘.fusion-menu-cart’, function(e){
e.stopImmediatePropagation();
e.preventDefault();
if( $(this).hasClass(‘xoo-wsc-cart-trigger’) ) return;
$(this).addClass(‘xoo-wsc-cart-trigger’).trigger(‘click’);
})
})
jQuery(document).ready(function($){
$(‘body’).on(‘click’, ‘.fusion-flyout-cart-wrapper’, function(e){
e.stopImmediatePropagation();
e.preventDefault();
if( $(this).hasClass(‘xoo-wsc-cart-trigger’) ) return;
$(this).addClass(‘xoo-wsc-cart-trigger’).trigger(‘click’);
})
})
</script>I am not sure if this is a clean way but it works, no slow down.