Virtuemart Product Slideshow Icon
Virtuemart Product Slideshow MainOverviewDownloadInstallationConfigurationDemo

Virtuemart Product Slideshow 1.015 Released

Virtuemart Product Slideshow Logo

Pleased to announce the release of Virtuemart Product Slideshow version 1.015. This fixes issues with encoded ampersands in url and contains minor changes to improve usability. It is recommended to update your slideshow especially on sites with non-SEF URLs.

New Feature: Generation of search engine friendly product fly page URLs are now optional. Turn ON/OFF by setting "Search Engine Friendly URLs" under SEO settings in Global Configuration. Note that non-SEF product fly page URLs are automatically redirected to SEF URL counterparts when using sh404SEF Joomla! SEF extension.

Updates on this release:

  • 2009-03-11: Removed forced URL processing using JRoute and made SEF product URL generation optional.
  • 2009-03-11: Output absolute product fly page URL so it would open correctly when product image is clicked on a slideshow running inside category pages regardless of SEF settings.
  • 2009-03-11: Disabled encoding of ampersands so product fly page URLs would work correctly in Opera and Firefox when SEF is off.

Important: Updating to this version should not cause problems with existing running product slideshows on your Joomla!/Virtuemart web site.

Download and update your Virtuemart Product Slideshow now!

Please feel free to post questions, issues, comments, suggestions, and feature requests using the comment form below. When posting issues, please include any errors generated, and/or the url to help you fix problems related to the slideshow.

Comments
Virgil
 - Running Multiple Instances of the Slideshow
2009-03-31 15:44:18
To create multiple instances of virtuemart product slideshow, in the module parameters, set the instance suffix to unique string for each instance of the slideshow.

For example:
slideshow#1: instance suffix = _latest
slideshow#2: instance suffix = _featured
and so on.

see the configuration page for more on instance suffix.
 - Elements in a row
2009-03-31 15:45:18
When you have multiple instances of the slideshow on the same page, how to show them in a row? I always have them shown in column, no matter how I try... Is there a setting to be tweaked?
 - other suffix's
2010-04-29 13:59:00
I have 4 diff instances, how do i get all four to display products in a unique order....
Virgil
 - Use CSS Float Left
2009-03-31 16:17:12
first, place the slideshow instances together at same template position such as "top" so they would appear next to the other vertically.

by default, joomla modules are wrapped in a div with a class name "moduletable".

to make them show on same row, use css:

Code:
.moduletable {
float: left;
}


of course, the css rule would affect all other modules.

to make sure your css affects only the slideshows, set the "module class suffix" of each to "_slideshow" for example. then your css becomes:

Code:
.moduletable_slideshow {
float: left;
}


you can just paste the css rule into your template's css file.
Falco Stellare
 - CSS float left
2009-03-31 16:32:10
Hi Virgil, I really thank you for your help, therefore I wasn't able to solve :-( I'm using the same template of the demo (JA-Larix), where do exactly I need to paste your code? Is there a further modification I must introduce? What is the right file?
Falco Stellare
2009-03-31 17:09:06
I place the instances in the "slider" position of the template. Perhaps I must make some changes in this template area in order to apply the CSS, any suggestion is welcome :-)
 - Just aint working
2009-04-10 22:23:27
Hi all,
I have added the following code as mentioned to my template.css under the
/* MODULE
--------------------------------------------------------- */
.moduletable_slideshow1 {
float: left;
}
.moduletable_slideshow2 {
float: left;
}
.moduletable_slideshow3 {
float: left;
}
.moduletable_slideshow4 {
float: left;
}

I have also added _slideshow1 to slideshow4 to the Instance Suffix in joomla and still all the slideshows are showing vertically instead of in a row. Any ideas folks?

I have also added other _examples to the Module Class Suffix but also to no avail.

Seems like there's more information needed. Is there a certain place in the tempalte.css where this code has to be placed?

greetz

Dave
 - re: Just aint working
2009-04-10 22:24:23
Dave wrote:
Hi all,
I have added the following code as mentioned to my template.css under the
/* MODULE
--------------------------------------------------------- */
.moduletable_slideshow1 {
float: left;
}
.moduletable_slideshow2 {
float: left;
}
.moduletable_slideshow3 {
float: left;
}
.moduletable_slideshow4 {
float: left;
}

I have also added _slideshow1 to slideshow4 to the Instance Suffix in joomla and still all the slideshows are showing vertically instead of in a row. Any ideas folks?

I have also added other _examples to the Module Class Suffix but also to no avail.

Seems like there's more information needed. Is there a certain place in the tempalte.css where this code has to be placed?

greetz

Dave


This is the website: http://demo.itics.nl/
Virgil
 - Instance and Module Class Suffix
2009-04-14 17:08:59
hi Dave,

the "instance suffix" makes every slideshow instance unique and enables running multiple slideshows on a page. however, it is not useful in css.

make use of "module class suffix" and set it to "_slideshow" (no quotes) for all four slideshows.

in your template.css, replace the following css rules:
Code:
.moduletable_slideshow1 {
float: left;
}
.moduletable_slideshow2 {
float: left;
}
.moduletable_slideshow3 {
float: left;
}
.moduletable_slideshow4 {
float: left;
}


with this single css rule:
Code:
.moduletable_slideshow {
float: left;
}


you can place the css rule at the end of your template.css.

Also, please make sure that all four slideshow module instances are assigned to only one same template position.

PS - I can't see the product slideshow at the url you provided.
Virgil
 - Multiple Slideshows in Demo
2009-03-31 17:11:43
in the template JA-Larix, there is a position named "slider" where the JA VM Product Slider was in. i disabled the product slider and created four instances of virtuemart product slideshow.

set the instance suffix for each:
#1: latest_iphone
#2: latest_ipod
#3: latest_other
#4: featured

now the "slider" position is wrapped by a div with id "ja-sliderwrap" in the html code. so to apply the css float left to the slideshows:

#ja-sliderwrap .moduletable {
float:left;
}

add the css rule above to the css file: templates/ja_larix/css/template_css.css

then you'll get same slideshow layout as in the demo.
Falco Stellare
2009-03-31 18:06:48
I can't believe it, even with your detailed instructions I can't obtain the same effect!!! :-( I'm using Firebug to study your layout, and it seems to be different from mine. I can't understand why. Absurd... :-(((
Virgil
2009-04-01 03:02:31
the demo was built using Joomla 1.5.9 / Virtuemart 1.1.3 bundle from virtuemart.net. then had it upgraded to Joomla 1.5.10 using the upgrade package.

how about your setup?

can you bring it online and post the url so i can see?

thanks
Stef
 - Very nice
2009-03-31 20:37:58
So basicly I need to make copies of module and publish them to make a fiew instances appearing one next to another?
Virgil
2009-04-01 02:54:13
Yes basically make copies and publish them to appear at same template position then copy and paste appropriate css rule given above.
Stef
 - Very nice
2009-04-01 10:42:09
Thank you very much
 - Musical Instruments Percussion
2009-04-06 21:17:03
Hi there,

I love the module, but am struggling with the css flost left thing.

I've pasted the code into the template.css file for my template, but it's still displaying vertically.

Page showing error:
http://musicalinstrumentspercussion.djembedrumshop.com/index.php?option=com_contact&view=contact&id=1&Itemid=104

I'd appreciate a bit of help in sorting this out.

Cheers for the very cool module.

Chris
Virgil
 - Slideshow CSS Float Left
2009-04-07 03:13:34
hi Chris,

the css code below should work.
add it to your template css file.

Code:
.moduletable_vmslideshow {
float:left;
}
 - Thanks
2009-04-07 15:43:44
Thanks Virgil,

That was the code I had used, but somehow it hadn't worked. I took out a space that was in the code at the top and it worked. (not sure if that made the difference, but it is now working).

Thanks. You can see it in action at www.musicalinstrumentspercussion.com on the various shop pages.

One question I had was whether the demo had the module published in 1 position, or whether they were in different module positions, because of the gap in between the pictures.

Chris
Virgil
 - Published In One Template Position
2009-04-07 17:30:33
The slideshows in the demo are published in one template position. To create a gap in between, add right margin into your css rule.

Code:
.moduletable_vmslideshow {
float:left;
margin-right:5px;
}
Bruno
 - Prob with mootool
2009-04-10 15:54:23
Hi Virgil.
First, thanks ! Great job.
I installed the module on 2 websites, same config, Joomla! 1.5.10 VM 1.1.3, and it's xorking perfectly on one of the websites but on the other, I have those two errors and no images is displayed by the module :

Code:
($(filter) || document).getElementsBySelector is not a function
[Break on this error] return false;});return(nocash)?elements:...);}}else{temp.push('[@',param[4],']');}}


and

Code:
el.set is not a function
[Break on this error] el=$(el);return(!props||!el)?el:el.set(p...mentById(el);type=(el)?'element':false;}


The main difference beetween the two sites is the template. One is a Ja_purity without heavy mods, the other is a heavy hack of ja_purity

Do you have an idea on what I did wrong ?
Thanks for any answer
Bruno
 - Ok sorry, almost fixed
2009-04-10 19:04:42
Sorry to post again, but I found the problem. It's a conflict with another module using JQuery. I could fix the problem in this other module.
 - Perfume Site
2009-04-11 14:17:21
Hi,

Is there a way to lengthen the duration of the caption bar. Where can i change this setting? Any idea's?

greetz

Dave
Virgil
 - Caption and Slide Duration
2009-04-14 16:37:31
hi Dave,

the caption duration is dependent on the slide duration. set longer slide duration to make caption duration longer.
 - Vertically instead of horizontal
2009-04-18 23:16:31
Hi

I have make in the .css

.moduletable_slideshow {

float: left

margin-right: 5px

}

Now the Slideshow is horizontal

Wher i can set that the 2 slider are verticaly like the demo

http://www.elektrocity.ch
Virgil
 - Slider Position Style from raw to xhtml
2009-04-19 08:12:47
Looks like your slider position was included as raw style like below:
Code:
<jdoc:include type="modules" name="slider" style="raw" />

so modules are not placed inside moduletable DIVs.

i think this was also the case with the other guys.

the demo has "xhtml" as default. fyi, it was installed using the Joomla 1.5.9/Virtuemart 1.1.3 bundle downloaded from virtuemart.net.

anyway, you can change the style to "xhtml" like below:
Code:
<jdoc:include type="modules" name="slider" style="xhtml" />


then, to make the css effective, set "module class suffix" in module configuration to "_slideshow" (no quotes) for all slideshows in slider postion.

also i noticed that the fourth slideshow doesn't work. it is because the "instance suffix" was set to "_Horror" same as the second slideshow. set it to other unique value to make it work.
 - re: Slider Position Style from raw to xhtml
2009-04-19 11:11:14
Hi Virgil

I have make this change in the index.php of the template. You have raison it was raw. i have change to xhtml. But i see no change it was horizontal. Must i change in other files anything.
Virgil
 - Module Class Suffix
2009-04-19 11:59:14
i see you set the "module class suffix" to "_Horror" and "_DVD". set both to "_slideshow" so css can take effect.
 - Module Class Suffix
2009-04-19 12:23:28
Thanks now i see thex in a raw but 3 ar not working. I have set all in modull class suffix to slideshow. -what i make wrong?
Virgil
 - Instance Suffix
2009-04-19 12:36:23
You are almost there!

The three didn't work because the instance suffix of each slideshow is empty.

Now, set the "Instance Suffix" to something unique for each ie "_Horror", "_DVD", etc.

DO NOT TOUCH the "Module Class Suffix" settings because they are now correct.

Please note that "Instance Suffix" and "Module Class Suffix" are two different settings.

"Instance Suffix" is used to make each slideshow unique so we can run multiple slideshows.

"Module Class Suffix" is used to group slideshows together so we can apply css rules for all of the slideshows.
 - Center the slideshow?
2009-04-28 16:15:59
LOVE THIS! I have only 4 products and want to center them in a module, is there a code modification that I can make? And to which file? Thank you SO much!
Virgil
2009-04-29 01:32:38
hi,

you mean 1 slideshow with 4 products?
and you want to center them in the slideshow module?
which slide effect are you using?
also please post a link so i can see.

regards
 - Center slide show
2009-04-29 01:57:37
http://www.landscapeorganic.com
(sorry) Yes ONE slideshow 4 products...(they are all in one category)
You will see that the "show" is on the left (so I made the text really long, so it kind of balances) but I would LOVE the actual "show" centered (then I will make it less wide of course) thank you for your speedy response!
Virgil
 - Centering the Slideshow
2009-04-29 18:08:44
First, set the slideshow width to 250 in module parameters (assuming that's 250x250).
Second, add the css rule below to the end of your template css file.
Code:
#vmProductSlideShow {
margin:auto;
}

That's it.
Cheers!
lateralus
 - Not workin
2009-11-30 17:13:06
Hi,
I've tried this trick but it doesn't seem to work!
I'd like to center the images inside modules! Is it possible???
Thanks ;)
 - Showing products not in stock
2009-05-08 02:26:54
My slideshow do from time to time show products that are not-in stock. 0 in storage.

Is this a bug or is there any way to adjust this so products that are empty are not being slideshowed?

Thanks,
Vegard
Virgil
 - VM Core Settings: Check Stock
2009-05-08 17:03:41
To exclude out-of-stock products from appearing on slideshow:

1. Go to virtuemart component configuration page by clicking on Virtuemart in components menu.
2. Page down until you see "Check Stock?" checkbox in "Core Settings" pane.
3. Put a check on "Check Stock?" checkbox, then another checkbox will appear labeled "Show Products that are out of Stock".
4. Clear the check on "Show Products that are out of Stock" checkbox.
5. Finally, click "Save" button on the toolbar above.

That should prevent products which are out-of-stock from showing on the slideshow.
Virgil
 - Manual Install via FTP
2009-05-09 01:19:48
To install the module using FTP:
1. download the latest version of Virtuemart Product Slideshow from the download page
2. extract the files into a folder named "mod_vmproductslideshow"
3. upload the folder onto your site's "modules" folder usually "public_html/modules" or "httpdocs/modules"
4. login to administrator page
5. go to "extensions-->module manager"
6. create an instance of the module by clicking on "New" button on the toolbar, and click on "Virtuemart Product Slideshow" from the list
7. on the module parameter page, put in a title, assign appropriate template position, and set to enable
8. you may also set other module parameters to customize

there you have it.
the steps for manual installation of the Virtuemart Product Slideshow module.
 - Direction
2009-05-13 19:18:57
Hi Virgil,
I have a question about how can I change de direction of the transition in my module. I mean that i want instead of a movement from right to left between two slides a tansition from bottom to up.
Is that possible? In case of make some changes in the code. Where do i have to make them?

Thanks in advance.
Virgil
2009-05-16 16:30:41
The module can not move from bottom to up for now.

You can add that functionality by modifying the javascript in tmpl/slideshow.js

Can't tell you which part exactly because i need to review it.
 - Start with panel open
2009-05-14 04:15:26
I need the module to start at full height not scroll out because it throws off my whole template. I tried wrapping the module in a module hider to show/close the module position but it still happens.
Virgil
 - Width and Height CSS
2009-05-16 16:19:15
Assuming you didn't put anything in "Instance Suffix", width is 200px, and height is 200px, add the css below into your template css:

Code:
#vmProductSlideShow {
height:200px;
width:200px;
}


if you've set "Instance Suffix" to "latest", do something like this:
Code:
#vmProductSlideShowlatest {
height:200px;
width:200px;
}


if that won't work for you please post a url.
 - Multilanguage with slideshow
2009-05-18 13:30:19
I have
Joomla 1.5.10
VM: 1.1.3
Joomfish 2.0.3

This module works perfect with native language (English) but with any other language just ain't work
any help?
thanks!
Virgil
2009-05-19 15:16:42
This is a very nice suggestion.
I'll look into making the slideshow multilanguage.
Thanks Carlos.
 - some questions/ suggestions
2009-05-20 11:42:31
First of, really like the slider, it feels really dynamic!
There are a few things i would like to know:

The slider always starts empty then fills up from the right to left. Is it possible to start with a "full" slide?

If your shop/slider is stuffed with products the slider slows your loading/refreshing speed to a point where it is (almost) not expectable anymore. Are there any workarounds besides limiting the number of products in the slideshow?

And finally, when all products have passed in the slideshow. the scroller seems to stop instead of start over again?
Virgil
2009-05-20 17:39:03
hi marijn, i'm not so sure if you're referring to this slideshow.
anyway, please visit the demo page and see if you like how it works.
paul
2009-05-26 12:02:36
Hi!
Could you please tell me how to get 2 instances of this slider to work?

I copied the original, and gave the copy a suffix and the same position as the original. but the copy doesn't load any images (it does display the framework correct underneath the original)
Virgil
 - Unique Instance Suffix
2009-05-27 02:55:37
give each a unique instance suffix.
the first could be "latest" and the second "featured"
2009-06-08 11:13:57
I did this but it seems that as soon as i give them a unique suffix (_new and _old for example) they refuse to display pictures. This also goes for when only one is activated. So i think the string is not appended to the JS file. Is it possible that i need to 777 or manually alter the JS file or something?
Virgil
 - Instance Suffix and Class Suffix
2009-06-08 17:45:15
there is no need to touch the JS file.
there are two suffices the instance suffix and the class suffix.

instance suffix string appends to JS vars while class suffix string appends to css class for the slideshow.

perhaps you could post a link so i can see what's wrong.
Gary
 - Nothing appears but Virtuemart Slideshow Link
2009-05-30 01:14:14
Ok. Installed Module and all I am getting is the link to Virutemart Product Slideshow being displayed in the module position... no slideshow or nothing like that... how do you even get the slideshow to appear? I'm using latest joomla and virtuemart ... thanks for helping.. Gary
Gary
 - Fixed it...
2009-05-30 06:23:32
Never mind... i uninstalled the module and reinstalled and it works fine now... go figure... lol... now I gotta go up and look at the css style examples.. Great work on this component!
Reinor
2009-06-04 17:09:40
Thank you so much! This virtuemart mod is the coolest!!
ludo
 - apply z-index
2009-06-14 18:26:58
Very nice extension !!!
But I still have some troubles with login box and cart that appear in a popup (lytebox)!
The images from this modules appear over my popups!!???
Is there any way to apply a z-index=0 to this extension to set it up below my popups??
Thanks
mako
 - Z-Index
2010-02-25 12:33:05
Is this trouble solved? I still have his problem.
Thanks.
hans
 - Z-index
2010-04-16 00:03:31
i also have the problem. Any solution is welcome
ludo
 - Product CategorIES Id + price
2009-06-16 00:33:40
Still the coolest extension but 2 main features are missing and it would be just perfect!!
1/the ability to add Product CategorIES Id would make possible to play items from multiple (sub)categories : items 2 & 3
-DVD (item 1)
--DVD AUDIO (item 2)
--DVD VIDEO (item 3)

2/the ability to show prices would be a nice feature too as an ecommerce extension ;)

Thanks anyway I still keep it ;)
Virgil
 - Nice Suggestions
2009-06-18 15:13:18
hi Ludo,

thanks for the suggestions.
will make it happen in a couple of days.
2009-06-20 00:28:52
Hi,

I've uploaded this module in Virtuemart with no problems but I am having trouble getting my items to show up in columns they only show up 1 at a time. The suffix are named _latest and _featured. Any ideas?
Virgil
 - Instance and Class Suffixes and CSS
2009-06-20 18:00:24
please see this comment post for instructions on showing the slideshow in columns.

better if you could post a link so that i can guide you
 - RE: Virgil - Instance and Class Suffixes and CSS
2009-06-22 17:01:24
Hi,

It's on my local server. It's not live yet. Can I send you the code to everything I have including my module parameters?
2009-07-01 16:58:49
Ok...I figured it out. I had to put values in the suffix after making 3 more copies of the slide show module. I also made new modules in my templatedetails.xml and index.php. In the index.php file i placed this in the main content area for columns.

templateDetails.xml
slide1
slide2
slide3
slide4

Thanks!
Sergey
 - instanceSuffix
2009-07-01 16:21:56
First of all thank you for the great product. I have a question. Can I create instanceSuffix to have 4 and more slideshow modules on the page?
Virgil
 - Unique Instace Suffix for Each
2009-07-01 16:57:36
yes, you can place 4 or more slideshow modules on a single page. just assign a unique instance suffix for each module.
Sergey
 - How to create instanceSuffix
2009-07-01 21:32:28
Thank you for reply. For instanceSuffix I use _latest, _random and _featured and it's working, but how to create a new one? Now i have 3 working vmslideshow modules but i need 4. What instanceSuffix can i use for 4rd module? My site working in catalog mode, i have disabled add to cart function.
Virgil
2009-07-02 19:48:57
hi, any unique instance suffix will do. just keep it short and descriptive.
 - Not display "noimage.jpg"
2009-07-02 15:14:58
Hi there, I have installed this on a clients website. i would like to know if there is any way to tell your module NOT to use "noimage.jpg" Bassicaly to ignore products with no image.
Virgil
 - Only Display Products with Image
2009-07-02 19:56:58
hi, this is nice feature to add into the module.

to exclude products with no image, set the slide show to display featured products only (see module config page).

then mark the products with image as special.
 - nothing happen!!!
2009-07-07 05:21:30
Dear Sir,
I have installed this module on my website and it has installed well. but now I have just its title and a link!!!!
what happen for products?!
thank you
hadi
Virgil
2009-07-07 19:51:23
hi, please provide a url so i can see what's going on. thanks.
wndrbear
 - Resizing Full Sized Images
2009-07-07 20:00:43
I want to use the existing full-sized images, but the images to get resized to fit the slideshow area. I have turned on the "dynamic product image resizing" option, but the pictures are not resized.

I would like them to be re-sized smaller so that they fit within the height of slideshow area. (I do not want the pictures move / pan, just fit in the area and be centered)

Other than this little glitch the product is great looking
Ronny
 - Image Unavailable
2009-07-10 03:15:25
Hi,

How can we stop the slideshow showing products with image unavailable?

Thanks
Bert
 - Bug with VPS & Sukerfish menu
2009-07-13 04:27:54
Greetings Virgil,

I have a bug where the Sukerfish menu of JSN Epic J1.5 template always drops down behind the Virtuemart Product Slideshow (VPS) in IE7, making it unusable.

When testing with Opera 9.64, the bug only occurs before I click a menu item. After I click a menu item, the menu then stays above the VPS.

Using the JSN ImageShow in the same module position, I do not have this bug.

Please give me some help how I can fix this!!!!
duppa
 - Feature Request
2009-07-14 01:30:58
I currently have categories set to all and random. It would be great if when I select a category in Virtuemart menu then Virtuemart Product Slideshow will only show random products from that category.

Cheers
Gregor
 - Problems with horizontal
2009-07-22 13:51:32
Dears,
I still have problem with good showing of this module in horizontal position.
I add to template.css code which gave Virgil. In the setting of module i put suffix _slideshow and Instance suffix: different. I'm using virtumart 1.1.3 and Joomla 1.5.9. Also in index.php i changed this
Code:

Please help.
phil
 - Feature request
2009-07-30 16:29:16
Hi Virgil! As already stated in june from another user, I would really love to have the show price or hide price feature in Virtuemart Product Slideshow!

That would be a blast! Bye, phil
Jackie
 - multiple as the demo
2009-08-08 00:16:39
I've tried follow all the good advises you give here Virgil. My problem seems to be - I can't find the modules in the template.css file! I would love to have just 2 instances in a fine row but can only make them vertical :-(
I gave the instance suffix two different names and I've followed all the advises, but when it comes to the editing in .css I give up. I use a template from Artisteer I my guess is thats the problem... Please advise me.

Cheers
 - Where to alter css file?
2009-08-19 09:57:06
I cannot for the life of me find any file that contains moduletable_slideshow in my template folder.... and am accordingly going crazier than normal.... would really appreciate your help.... thanks
Greg
 - Price
2009-08-21 11:25:46
Hello, what about the price suggestion ?
 - Sidemenu not showing when clicking on item
2009-08-23 20:20:26
Hi Virgil,

Thank you so much for this great module, it is a really nice feature to place on a web site!

I have installed the module and set it up by using a {loadmodule xxx} in the front page.

The slideshow works perfect, and I would really like to keep it on the site. But there is one problem... that when clicking on an item, the side menu of the VirtueMart categories does not (always) show up.

Do you have any idea how I could fix this?

Thanks

Chris
 - slideshow module not swowing on front page
2009-08-26 16:05:39
Hi Virgil,
Thank you so much, this module is so great!
I've got the following problem module is working great but is not showing on the front page it's put in module position called advertising. On the front page the module is showing just the name of the module and link to your site with caption "Virtuemart Product Slideshow"
On other pages is working perfect
 - Product Slide Show shows only on page with virtuem
2009-08-26 16:55:05
My problem is this when there are no product listed on the page for example on article page or other page the productslideshow shows only link to your site with the title "Virtuemart Product Slideshow"
How to make it work on non virtuemart page?
Thanks for your time
 - VM Product Slideshow shows only on VirtueMart Page
2009-08-28 23:03:46
I've got the following problem without explanation when and how it's happening:
1. When using more than one copy of VM Product Slide Show sometimes the copies shows only on the page where there is VM content present on other pages the module shows only "Virtuemart Product Slideshow"
2. Now there is another problem the modules shows but on front page there are copied instances of the module only with the text "Virtuemart Product Slideshow" you can see it on site provided with the form.
The CSS is as follows:
Code:
/*Modules SlideShows styles */
#adverts{clear:both;}
.m_slideshow, .m_slideshow2, .m_slideshow3,.m_slideshow3 .module-body,.m_slideshow2 .module-body,.m_slideshow .module-body{padding:0; margin:0;float:left;display:block;position:relative;}
.m_slideshow .module-body{padding-left:19px;padding-right:5px; padding-bottom:10px;}
.m_slideshow2 .module-body,.m_slideshow3 .module-body{padding-left:5px;padding-right:5px;padding-bottom:10px;}
.m_slideshow3 .module-body,.m_slideshow2 .module-body,.m_slideshow .module-body{margin:auto; }
.m_slideshow .module-title {font-size:90%;font-weight:bold;margin:0;padding:10px 19px;}
.m_slideshow2 .module-title {font-size:90%;font-weight:bold;margin:0;padding:10px 0 10px 5px;}
.m_slideshow3 .module-title {font-size:90%;font-weight:bold;margin:0;padding:10px 0 10px 5px;}

module instances are
_clothes
_accessories
_bikes
_parts
I am at a loss what cousing this behaviour if you like I could provide administrator access to the site provided or full code in form of JoomlaPack .jpa archive
 - Fix the problem from previus post
2009-08-28 23:24:54
Now everything is working it seems that the problem with display is related with Ken Burnst Effect it may be conflict with another component when I change the effect to "pushing" everything is showing fine. The second part of my previous post is related to my mistake because I load the position again in front page article with
Code:
{loadposition xxx}
statement.
 - xxxvibes
2009-08-30 16:52:21
Hi Virgil,
This is a great module and there is loads of help on here which is fantastic! Running on the latest Joomla & virtumart. I have been using joomla for a month so be gentle :-)
My problem is that I am stupid :-) I would like to display the module horizontaly but alas even with all this great help I have been unable to get it together! I think I'm almost there but may as well be on the moon :-).
It is an Adult site for a client and he is very pleased with it! I am showing only one instance of the module which is fantastic but would like to display 4! I can appreciate you must be busy with all us idiots hacking around, so if at some time you get the chance to have a peek and point me in the right direction I'd appreciate it. It is an ADULT XXX site Toys n stuff so if you find it offensive and decline I will understand :-)
Kind Regards
Allan
lucas
 - instances with categories
2009-09-05 12:57:01
as you can have in each instance shows a different category
example:

1: _lastest_telephone
2: _lastest_networking

et...
 - I can not display the image
2009-09-14 17:35:54
Hello, I'm Italian, I do not understand why my site I can not see images but only the text.

Thanks enticipate.
 - No images
2009-09-14 17:37:19
Hello, I'm Italian, I do not understand why my site I can not see images but only the text.

Thanks enticipate.
 - I couldn't place all the modules in an horizontal
2009-09-23 22:51:51
Hi there,

I've dowloaded your module that can be found here: http://www.jampmark.com/virtuemart-product-slideshow.html?The product is great. I had the chance to find it here: http://joomla.jampmark.com/.
Especially I appreciated the fact that I can work with multiple modules in the same page and apply the "sliding effect". Very smart.
?This is possible because, as written in the configuration settings (http://www.jampmark.com/virtuemart-product-slideshow/configuration.html), each "Module Class Suffix" (same for all the modules) and "Instance Suffix" are put together in order to create a unique module. ?
Ok, this is very clear, but...
?At this moment I'm not able to give it an appropriate shape, as I can do instead with the demo copy. I mean, I couldn't place all the modules in an horizontal line and show the titles of each module.[/color]

I checked the "Show Title" setting on, but this actually didn't solve the problem.
My modules, then, are shown in a vertical line, one over the other.

I'd like to know how to edit the CCS and what should I change in order to achieve the same result as you.

[color=purple]I tried to follow the instrunctions in this page http://www.jampmark.com/virtuemart-product-slideshow/news/virtuemart-product-slideshow-1015-released.html#comments and add the code in the template_css.css, but I can't really realize why they're still not shown in an horizontal line.


I think many users are experiencing the same problem. I think it would be a nice idea to release a sort of instructions page and explain how to do it.

P.S: I'm using the same template (ja_larix) as your demo website.
The website I'm referring www.guerriniinformatica.eu to is the personal website of a friend of mine. Please don't email me through the contacts that can be found there.
Sue
 - re: Use CSS Float Left
2009-09-26 13:56:58
Virgil wrote:
first, place the slideshow instances together at same template position such as "top" so they would appear next to the other vertically.

by default, joomla modules are wrapped in a div with a class name "moduletable".

to make them show on same row, use css:

Code:
.moduletable {
float: left;
}


of course, the css rule would affect all other modules.

to make sure your css affects only the slideshows, set the "module class suffix" of each to "_slideshow" for example. then your css becomes:

Code:
.moduletable_slideshow {
float: left;
}


you can just paste the css rule into your template's css file.


Hi.virgil
my div is




and css is

#slider.moduletable{
float: left;

}
my vmproductslideshow show in column
how do I set it?
 - No transpararency when using lightbox
2009-10-02 17:04:24
Hello,

I'm using an ecard component and Virtuemart. When showing a product image or ecard in lightbox, the images overlap with vm product slideshow because the images on vm product slideshow are not transparent, especially in Firefox. Sometimes the images in vmproductslide are transarent and sometimes they are not. Strange?!

any idea how to fix this?
Gabriel
Hendrik
 - Duplicated products
2009-10-10 21:47:48
Hello Virgil,

Thanks for this great module. I have products linked to different categories. This causes duplication of those products in the slideshow.
I want each product to be shown only once in the loop. Can this be done?

Thanks for your help!
Hendrik
 - re: Prob with slideshow
2009-10-22 00:25:38
[quote=Bruno]Hi Virgil.
First, thanks ! Great job.
I installed the module on my site, same config, Joomla! 1.5.10 VM 1.1.4, and it's not working and displaying anyting, I have properly configured the module as per the instructions on your website but still no luck. Please advise.
 - Duplicated products
2009-10-24 21:41:56
Hello,

First of all thanks for this great extension.
I have products in multiple categories, and those are duplicated in the slideshow. Can this be changed??

Thank you.
Hendrik
fasatrix
 - Different photo in different istances
2009-10-25 01:34:55
Hi guys,
great product indeed and working very well on my web. I am using the multiple istances feature as well. The only thing is that I couldn't be able to dislay different picture per different istance. perhaps samething like the JA Larix example which has for example: the "latest in Iphone" , "Latest in Ipod etc etc How can I do that? On my web sites I have always the same virtuemart product list's picture ( all of them) in all the instances I have created.

Thanks for your help
fasatrix
P.S
I am not good with scripting so I wasn't able to understand that one on Larix.
fasatrix
 - Instance Suffix
2009-10-25 14:55:35
Hi Virgil,
I have posted you before another email asking how to use the Instance Suffix. I've understood the difference between Instance and the CSS suffix but due to the fact that I am not good with scripting I would like to understand how to use the Instance Suffix in orther to have differente photos of products showed into different instance, like that one in JA Larix. I have manage to have 4 unique instances but they all show the same pictures at the same time.. What i want instead to achive is have different picture in different instance sorted per category..

Please can you help with this

Thanks
fasatrix
 - Activation?
2009-10-31 13:07:09
Hi, i've installed the module on the site i'm developing, but when i try to see it i can see only the title and the link to "Virtuemart Product Slideshow".

I've tried a lot of settings, but none is working... could you please help me? I've see this module on a lot of site and it would be great for my site, but i can't use it!

Please help me.

Thanks
Emanuele
 - new install not finding component?
2009-11-10 01:07:50
i just installed the latest version of virtuemart in my joomla 1.5.15 site. when i enable the module and try to view the site, i get this message:

Warning: require_once(/home3/joyindee/public_html/wsidebaptist/modules/mod_vmproductslideshow/../components/com_virtuemart/virtuemart_parser.php) [function.require-once]: failed to open stream: No such file or directory in /home3/joyindee/public_html/wsidebaptist/modules/mod_vmproductslideshow/mod_vmproductslideshow.php on line 34

Fatal error: require_once() [function.require]: Failed opening required '/home3/joyindee/public_html/wsidebaptist/modules/mod_vmproductslideshow/../components/com_virtuemart/virtuemart_parser.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home3/joyindee/public_html/wsidebaptist/modules/mod_vmproductslideshow/mod_vmproductslideshow.php on line 34


true, /components/com_virtuemart/virtuemart_parser.php is not present -- not even the folder. how to resolve? thanks! jt
 - multiple images slideshow
2009-11-10 23:07:12
I would simply like to display several parts of edible plants. f.i. picture of plant followed by picture of root/tuber followed by picture of flowers and leaves.
Is this peace of software capable of doing just that.
I'm a complete dummy so foolproof super user friendlyness is highly appreciated.

Much obliged

Elzo
 - more categories
2009-11-19 18:25:07
You can put more than 1 category in each slide???
Simone Tesei
 - problem Joomla 1.1.15 + virtuemart 1.1.4
2009-11-28 18:02:18

Hi, very good module but i have problem using Joomla 1.1.15 + virtuemart 1.1.4. It work ok for differents istance in vertical but not in the same row. In this case i see only the first slide show but in 2° or 3° slide i not see images but only the "Virtuemart Product Slideshow" link . I read all post and
just modify template.css :

.moduletable_slideshow {
float:left;
margin-right:35px;

}

assign css suffix "_slideshow" ans use the same instance suffix for each slideshow.

what i can do ?

Regards in advance
 - Modules side by side
2009-11-30 10:27:07
Hi Virgil,

I'm trying to change my styles3.css in template Afterburner.

The file has a showcase section with each line starting with #showcase.

I tried to add a few things list here that other people had luck with, but I still get the module displaying vertical.

Any help would be great.

Frank
Jaun-Paul
 - URL rewriting to non relative domain.
2009-11-30 12:41:21
Hi I seem to be having a small problem.
I have 2 domains for the same site when I click on the product in the slideshow it redirects me to my .net domain even if I am on my .com domain.
Can this be configured to work with the relative domain?
 - CSS float left
2009-12-13 15:24:11
Hello,
can you help me how to display multiple instances of the slideshow in a row?
Module Class Suffix is "_slideshow" for both instances and Instance Suffix is "_slideshow1" and "_slideshow2"
where should i put the code ? into template.css or style3.css?
which one ?
.moduletable_slideshow or
.moduletable_vmslideshow
thank you!
 - Display only products on discount?
2009-12-14 06:13:53
Hi,
First of all, thanks for a great extension.

I was wondering if it would be easy to add an option to only display products that are on discount? I can see there's an option to display only Featured products but another option for just discounted products would be perfect!

Cheers,
Bob.
 - Show Price
2009-12-14 06:44:44
Hello again,

Is there a way to show the product price? I think this is a critical feature.

Cheers,
Bob.
 - Center product image possible ?
2009-12-27 16:32:57
Is it possible to center a product image and if so how ?
Now it is completely at the left of the module box.
Ganesh
2010-01-04 15:25:36
Hi there,

I love the module, but am struggling to get the css (slideshow left) to work correctly. Currently, I am on the local env.

I am using a template and using a position called user2 to display the slideshow. I looked at the various articles and could not identify the correct div in the index.php. I tried to set the code in template css. Not sure I am on the right path. I have given the code snippet from the index.php

 - Product Category Id
2010-01-05 17:27:53
How is it or IS it...possible to ad multiple categories?

Example I want cat. kl. 1, 3 and 4 to show in the module.

is it possible or I suggest that next version include this opporturnity.
allen
 - I agree
2010-03-17 04:46:56
I'd also like to see multiple categories possible.
 - Yagendoo
2010-01-27 16:25:20
Very good, I think that ..
has helped me too much ..
weiter so!
Greeting Jason
 - conflit vm product slide show & ddaccordionmenu-ap
2010-01-27 16:36:41
Bonjour j'ai installer votre module tout marchais bien jusqu'à que j'installe "http://www.dynamicdrive.com/dynamicindex17/ddaccordionmenu-apple.htm"

Le module vm product slide show ne répond plus lorsque je le met sur la meme page que ddaccordionmenu-apple
Danny
 - CSS float left
2010-02-07 18:38:21
Hello,
I tried the solution earlier provided:
Module Class Suffix is "_slideshow" for both instances and Instance Suffix is "_slideshow1" and "_slideshow2"

.moduletable_slideshow added to the end of template.css

Slideshow is in a column instead of a row.


thank you!
 - pcarrd publication
2010-02-10 04:49:16
Hi Virgil,
Ive tried everything I could possibly get from your previous instructions but non of them works.. Im using rocket theme sentinel maybe it requires some different approach, i dont know pls understand that Im just another newbie here fascinated with your work of art trying to make it work as exactly like the demo inspires me.

I'll appreciate any attention from u thanks!
Virgil
 - re: pcarrd publication
2010-02-10 18:19:19
hi Amor,
please post the link to the page so i can take a look. you can also use the contact page.
Iain
 - error in IE8
2010-02-10 18:58:31
Hi, really like this module, but it seems to be throwing an error in Internet Explorer 8 - the page loads with a 'Done, but errors on page' warning. The error reads,

Message: 'Class' is undefined
Line: 10
Char: 1
Code: 0
URI: http://axobox.com/scottishquality/modules/mod_vmproductslideshow/tmpl/slideshow.js

Switching the module off removes the error. I'd be really grateful for any help you can give.
Virgil
 - re: error in IES
2010-02-11 15:34:46
please make sure that mootools javascript library is loaded. some themes or templates remove the library to save on downloads especially when not used on a page.
Iain
2010-02-12 15:52:29
According to the source mootools is loading (mootools.js I presume?), don't think that's the problem.
Virgil
2010-02-12 19:15:25
Could you please post a link so i can see what's going on? i don't need to login. just need to see.
 - Add Manufacturer
2010-02-12 17:30:52
Hello, Thanks for your job. How to hack for adding manufacturer… need it really
Thanks
Virgil
2010-02-12 19:19:47
maybe i just put a field in the configuration where you guys can enter description template. for example:
{name}
{desription}
{price}
{manufacturer}
so you can better format however you want.
you can enter html tags of course.
 - caption background color
2010-02-14 15:18:13
hello, could you help me where should be problem with "caption background color" ?
it is working fine in MSIE, but color in Firefox is gray (default). in your demo it is ok.
Virgil
 - re: caption background color
2010-02-15 18:15:57
hi jaro, please post your url here or use the contact us form.
 - re: caption background color
2010-02-15 18:45:25
hello, could you help me where should be problem with "caption background color" ?
it is working fine in MSIE, but color in Firefox is gray (default). in your demo it is ok.

http://www.ok-mobile.eu
Virgil
 - re: caption background color
2010-02-16 14:18:33
hi Jaro,
please put # char in-front of your color value for "Caption Background Color".
In your case, value should be "#990000".
enjoy!
 - Field with html Tag
2010-02-15 22:00:35
Virgil wrote:
maybe i just put a field in the configuration where you guys can enter description template. for example:
{name}
{desription}
{price}
{manufacturer}
so you can better format however you want.
you can enter html tags of course.

Sold !!! it will be great
 - code clash with accordian
2010-02-21 15:19:11
Hi,
Can you help please?
I'm using mod_ojaccordionmenu when I unpublish it the slideshow works, do you have any suggestions how I can get them both working on the same page?
Thank you in advance for a great product.
John
Virgil
 - please post the url
2010-02-21 16:09:50
hi John, please post the url so i can take a look.
 - Lefays Fine Arts
2010-03-01 16:09:46
First, thanks for a brilliant module, which enables me to do just what I need.

On the page 'Home2' I have 4 slide-shows in the 'breadcrumbs' position. When the shop is working, each will be 'fed' images from a different category.

What I would like to do is arrange the 4 slide-shows in 2 rows & 2 columns.

I have tried the advice given earlier, but nothing seems to work.

Any advice would be greatly appreciated.

If arranging modules was easier (or the process fully documented) I am sure this this excellent module would be much more popular.

I am using Joomla! 1.5.14 & VirtueMart 1.1.4 stable, installed from the bundle.
The template was made in Artisteer
Virgil
2010-03-02 17:23:17
hi Michael, please post the url so i can help you. you may use the contact us page if you want.
 - Ken Burns images pause at the end
2010-03-04 09:31:12
Hi,
great job on the module.
One question: Is it possible to pause the images for about 1 second after the Ken Burns effect? This way the product images change imidiately after it's finished with the animation (zooming), and i get the feeling that the customers don't get a good look at the whole product since it's just zooming and does not pause after that.
Thanks
Virgil
 - No Pause Yet
2010-03-04 17:13:27
it is not possible to pause the images for now but will add this as an option.
2010-03-04 14:13:18
HI
I'm trying to setup the modul in a website using a YooTheme template, and it doesn't work as expected. The module shows only one item, spanned onto the whole module width dimension. Do you have a hint to address and correct this error?
Thank you in advance for your help.
Virgil
 - please post url
2010-03-04 17:14:24
please post the url so i can help you better.
Anonymous
 - re: please post url
2010-03-05 08:19:46
Virgil wrote:
please post the url so i can help you better.

http://joomla.toolware.it
Thank you for your support
Virgil
 - slideshow works fine on your site
2010-03-05 16:40:42
the slideshow works fine. there are 10 items. width is 430 and height is 150. you can adjust width and height so images are more visible.
Jakub Vanak
 - Product with images only
2010-03-05 16:30:26
Hello, we have a lot of item cards without images. I didn`t find any option to filter them out from selection... So added new parameter $productWithImageOnly and modified sql script:
Code:

if ($productWithImageOnly) {
$query .= ' AND product_full_image IS NOT NULL ';
}
Virgil
2010-03-05 16:51:41
sure will add this option for full product images and thumbnails
 - Products with images only
2010-04-28 12:08:10
Jakub, where exactly did you put your extra code ?
Anonymous
 - re: slideshow works fine on your site
2010-03-05 16:59:49
Virgil wrote:
the slideshow works fine. there are 10 items. width is 430 and height is 150. you can adjust width and height so images are more visible.

I'm sorry, but I was thinking that it could be possible to show more than one product per module!! I suggest you to add that capability: in that way, we could i.e. show more products in the same module, without the needing of adding more modules.
Thank you anyway for your help
Virgil
 - Use Product Category Id
2010-03-06 15:30:28
please set "Product Category Id" = 0 to show all your products. maybe you're looking to show products from multiple categories. i'll add that option.
Sung
 - slideshow like jampmark.com
2010-03-09 13:28:51
Hello.
I am a novice user.
I'd like to have 4-5 product slideshow on home page like demo on jampmark.com.
Please help me out.
Can anybody give me a step by step instruction on it?
What to include on index.php, on template.css, templateDetails.xml.
Do I need additional steps?
Thank you very much in advance.
I spent a day, but I couldn't figure it out.
Svenn
 - Duplicated products
2010-03-19 12:24:31
I've seen several others with the same problem here.. Is there any fix to the module showing duplicated products when the same product is located in several categories?
 - When new version?
2010-03-19 12:46:08
I'd like to as when You plan to release new version including showing price?

Regards,

PS: Module is great
Sylvain
 - slideshow does not appear
2010-03-19 20:59:34
Hello

I'm experimenting with VirtueMart and
I've just installed your slideshow module
But when I try to view it I only see this link "Virtuemart Product Slideshow"


I don't have much time to try to understand what missing
Can you just tell me?

Thank you
ElektroPunk
 - VM Product Slideshow is only working with register
2010-03-20 18:56:49
Hi,

my problem is that Virtuemart Product Slideshow 1.015 is only working if a user is logged in. I think it's weird because the module is set to public mode. Anybody an idea how to solve this problem?

Thanks in advance.
ElektroPunk
Kassim M
 - description
2010-03-21 21:27:06
great module

is it possible to add an short description also ?
Bill
 - Features: navigation & link to category
2010-03-26 15:37:57
Hey,

Just downloaded your slideshow.
Looking good.

Two things that maybe nice features:
1. navigation so you could go back
2. Right now clicking on an image will bring you to the product page. So maybe a option to link to the category page.
 - Button "featured products" not working
2010-03-30 18:43:29
Hi all,
I've had the problem, that the button "featured products only" had no function. (version 1.015).
In the mod_vmproductslideshowhelper.php I found in line 59:
if( $specialProducts ) { and changed it to:
if( $specialProducts != 'Y') {
Now it works!
 - Modulposition covers content
2010-03-30 18:50:01
I've installed the module to my website - and I'm happy about this nice tool! In IE8 everthing works fine. In Firefox and Safari the Modul (left position in Template beez) appears in the middle and covers the content. I tried to find a solution ... has anyone an idea for me? http://www.tauchvertrieb.com
Stano
 - It works perfect !
2010-03-31 16:04:58
Thank you for this marvelous module !
The option that it is possible to show selected categories instead of 1 or all would be great :)
Nico van de Kamp
 - Example
2010-04-06 23:02:23
Hello,

I know this more the site for virtuemart product slide show. But I have download the virtue mart component+modules. I want to make something like http://joomla.jampmark.com/index.php?option=com_content&view=frontpage&Itemid=79.

I have something with categories, products etc.

Is there a tutorial how to configure the virtuemart and how to use different modules?
Maybe I'm asking now to much, but is the above mentioned site/template possible to download, so that I can see how they have done it?

Thanks in advance,

Nico
Valerio
 - Non SEF product url
2010-04-10 16:16:53
This module rocks!
The only problem for me is that when clicking on a product via the slideshow, i go to the product page but it has a really bad url, not a sef one as if i reach the same page normally.
How can i avoid this?
ps: working offline
minou
2010-04-11 03:23:47
hi :)
i like your module very much, but i have a little problem with my product imagines 'cause they have a transparent background so when it loads a new imagine i still can see the old below :(

any suggestions please?
thanks in advance
Valerio
 - Product url's
2010-04-13 12:36:16
The only problem i have with this cool module is that when i click on a product in the slideshow, the resulting url is not SEF as it is if i reach the product via the normal menu.
Any thoughts about that?
Thanks alot in advance and keep the good work!
2010-04-15 05:15:22
Worked perfectly fine for me. thanks very much..
Aaron
 - Great Module! - Suggestion
2010-04-20 20:12:13
Fantastic module!

Feature request: I have my categories divided into three top categories. The top categories do not have products themselves.
Would it be possible to add an option to the module to fetch a random product within a sub-category?
Tim Tsui
 - Module displaying 2 pictures at a time
2010-04-21 22:55:22
Hi!

I want to get this module to work! But, after the module shows one picture and it shows the next, the previous picture is there until the 3rd coming picture shows!

It was all on default settings. Do you have any idea what is happening?

Basically two products are always on the screen and the first product will not leave until a new 2nd product comes out. =[
 - Again: products with images only
2010-04-28 15:08:02
Like it says, I want to control displaying products with images only. Doing that by marking products with images as special is no option a I have thousands of products. Jakub Vanuk suggested a way to do it a few posts back, but I did not get it to work. Virgil, it should not be too difficult for you and it has been asked several times before. How about it ?
 - Image on top of eachother, no refresh
2010-05-02 11:16:55
Hi I installed the module and works OK, BUT it seems the image doesn't seem to refresh properly. So the images seem to layer on top of eachother which results that parts of the previous image (when differt size) can still be seen.

See www.hetledhuis.nl at the bottom of the page.

Any idea to resolve this?

Regards and thanks for the great module
 - Displaying the module on non-virtuemart pages
2010-05-03 03:12:51
Hello Virgil. First let me say that you are the great progammer and your module is the best I saw.

But still there is a question: is it possible to display the module on non-virtuemart's pages? Especially on com_content pages?
Now it shows the only caption that leads to your site.

Thanks in advance. I hope you have an answer and I'm sorry if I did't notice the solution in comments.
 - The module does not appear
2010-05-13 10:55:37
Hello Virgil,
I installed the module on Joomla 1.1.4 and VirtueMart 1.5.15 and I have configured and activated the module but does not appear! I checked the positions of my template and they are correct ... I have to install anything else?
 - Great but not in Chrome and IE7
2010-05-13 19:51:03
Hi,

Thanks for this great module!

I have one question though, the images are not showing in IE7 and chrome, could it because of a setting?
 - side by side not working
2010-05-14 04:52:17
Love this module, but just can't seem to get it to work. I followed your first example:

.moduletable_slideshow {

float: left;

}

I put _slideshow in the Module Class Suffix for both, but they still appear vertical. I have them in the breadcrumb position. My goal is to have 2 rows x 2 high if possible..

thanks

Steve
 - Images doesn't load when selected "Show Product Sh
2010-05-19 21:30:20
Hi Virgil

First of all. Thank's! A very usefull extension.

By here, it doesn't work when I select to show the short descriptions (doesn't load images). When this feature is desabled, the module works fine. Any idea about why this happen?

url: [url]http://www.kakusacessorios.com[/ur]
user: demo
pass: demo

Thanks
 - transparency problems
2010-05-21 09:53:07
Hi everybody! I'm having a problem: All my productos images are png with alpha, and in the slide show appear one 'behind' the next one. Is there any way so I can 'forget' the graphic alpha? thanks!
JP Hansen
 - Text Link when Short Descrption selected
2010-05-23 02:42:41
Hi, I was having the issue with the "Virtuemart Product Slideshow" text link being the only thing displayed.

As soon as I turned off "Show Product Short Description", the slideshow worked.

So, try that, those of you with the same issue (and if this is a bug, maybe it can be looked at for the next release)?
Name:
Email:
 
Website:
Title:
UBBCode:
[b] [i] [u] [url] [quote] [code] [img] 
 
 
Please input the anti-spam code that you can read in the image.

3.26 Copyright (C) 2008 Compojoom.com / Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved."