Hi, I have a question about the images of the products, when I put just 3 images the third goes down, if I put 4 images it works well in just a row with controls (see the print screen)..
And in the module Sj Extra Slider for joomshopping it displays the last photo of the product.. how can I configure or what code to modify, if I want that the module shows the first photo. thanks.
Print screen
www.csingenieros.com/problemSJ/problem.png
EDIT:
I solved the problem with the sj js extra slider if anyone has the problem just need to go to the modules folder /mod_sj_js_extraslider/core/helper.php open the helper.php file and go to line 65 and edit
this:
$ value-> product_thumb_image = $ image-> image_thumb;
$ value-> product_name_image = $ image-> image_full;
for
$ value-> product_thumb_image = $ images [0]-> image_thumb;
$ value-> product_name_image = $ images [0]-> image_full;
after this change the module will show the first image of the products.