Carousel - SHOW ALL

Modules, Add-ons and custom code that's more than just a quick hack or Mod.
Post Reply
medicom
Posts: 7
Joined: Sat Sep 04, 2010 10:18 am

Carousel - SHOW ALL

Post by medicom »

Hi,
Maybe many of you wants to show all available thumbnails in carousel box. Ok, there are two simple steps:

1. Open the file your_shop/javascript\jquery\plugins\jCarousel/jCarousel.js and find:
"var divSize = liSize * v;" - row 245;
replace with:
"var divSize = liSize * itemLength;"

NB: If you want to show only exact number of thumbnails, you have to replace the itemLength variable with this number :)

2. Open the file your_shop/javascript/product.functions.js and find:
$("#ImageScrollPrev").show();
$("#ImageScrollNext").show();

replace with:
$("#ImageScrollPrev").hide();
$("#ImageScrollNext").hide();


with this step we hide the Next and Previous buttons
That's it.
NB: If you have many thumbnails you have to increase the size of the content windows
mipra
Posts: 23
Joined: Fri Sep 03, 2010 7:08 pm

Re: Carousel - SHOW ALL

Post by mipra »

NB: If you have many thumbnails you have to increase the size of the content windows
it works!!! Thank You very much. How do you "increase the size of the content windows" exactly?
mipra
Posts: 23
Joined: Fri Sep 03, 2010 7:08 pm

Re: Carousel - SHOW ALL

Post by mipra »

Anybody want to reply? :roll:
medicom
Posts: 7
Joined: Sat Sep 04, 2010 10:18 am

Re: Carousel - SHOW ALL

Post by medicom »

this is the "width" property of .content class in your-template/Style/style.css file
Post Reply