Please check This is site url.
http://phpjoomlacoders.com/dev/jupiter/index.php/shop/
And also check plugin configuration
First
Second
Thank you
-
This reply was modified 2 years, 4 months ago by
vicky0007.
Hello,
There should be
ul.products
li.product
for the first 2 selectors.
Regards,
Dima
Hello please help me with this url
http://thelionrockpress.com/dev/shop/
I have manage div structure but not working good.
I have set this configuration in backend side
Products Container Selector : section.products
Product Item Selector : article.item
Pagination Selector : nav.woocommerce-pagination
Next Page Selector : a.next.page-numbers
Previous Page Selector : a.prev.page-numbers
Please help me
-
This reply was modified 2 years, 4 months ago by
vicky0007.
Hello,
Open plugin setting page, tab JavaScript and add to the After Update textarea this
jQuery('window').resize();
jQuery('.product-loop-image').attr('src', function (){ return jQuery(this).data('mk-image-src-set').default; });
jQuery('.product-hover-image').attr('src', function (){ return jQuery(this).data('mk-image-src-set').default; });
Regards,
Dima
Thank you images displaying now but please check one more time, old listing hide in new apperance π
http://thelionrockpress.com/dev/shop/
jQuery('window').resize();
was added to fix it. Probably it is running to soon.
Try to change the code with
jQuery('window').resize();
setTimeout( function(){ jQuery('window').resize(); }, 50 );
setTimeout( function(){ jQuery('window').resize(); }, 100 );
setTimeout( function(){ jQuery('window').resize(); }, 500 );
jQuery('.product-loop-image').attr('src', function (){ return jQuery(this).data('mk-image-src-set').default; });
jQuery('.product-hover-image').attr('src', function (){ return jQuery(this).data('mk-image-src-set').default; });
It will repeat the function in 50, 100 and 500 milliseconds.
Regards,
Dima
Thank you for support, now everything is okay π