Jump to content

Accessories Block does not scroll?


Recommended Posts

Hey everyone, I was wondering if anyone has run into this issue, for some strange reason the accessories block (located at the bottom of the page) does not scroll to the right or left. It used to scroll but now it doesn't. IS the accessories 

 

Anyone run into this issue? Or know how to fix it?

 

https://store.nebtek.com/digital-video-recorders-capture/307-odyssey7.html

Link to comment
Share on other sites

product.js

 

change this:

		$('#bxslider').bxSlider({
			minSlides: 1,
			maxSlides: 6,
			slideWidth: 178,
			slideMargin: 20,
			pager: false,
			nextText: '',
			prevText: '',
			moveSlides:1,
			infiniteLoop:false,
			hideControlOnEnd: true
		});

to:
 

		$('#bxslider').bxSlider({
			minSlides: 1,
			maxSlides: 6,
			slideWidth: 178,
			slideMargin: 20,
			pager: true,
			nextText: '',
			prevText: '',
			moveSlides:1,
			infiniteLoop:false,
			hideControlOnEnd: true
		});
$(document).ready(function(){
$('.bx-viewport, .bx-wrapper').css('height','auto');
});

in product.css use this:
 

.bx-pager-item {
  display:inline-block; padding:5px 10px; background:#f3f3f3; margin-right:5px; text-decoration:none;
}
Link to comment
Share on other sites

  • 2 years later...

Hi!

 

I've a similar issue.

I'm testing Prestashop 1.6.14

 

I'm trying to tune the behavior of "Product in same category".
I've changed /js/modules/productcategory/js/productcategory.js:

$(document).ready(function() {
	if (!!$.prototype.bxSlider)
		$('#bxslider1').bxSlider({
			minSlides: 1,
			maxSlides: 3,
			slideWidth: 178,
			slideMargin: 20,
			pager: false,
			nextText: '',
			prevText: '',
			moveSlides:1,
			infiniteLoop:true,
			hideControlOnEnd: false
		});
});

It work only with some products.
If product A, B, C, are in the same category, if I visit A's product page I can browse other products with slider. If I visit B and C's product page I only see the static image of

the other products.
I've no cache actived.

What could I try, please?
 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...