Community Forums

[Released] Homepage Slideshow Module

Commercial Extensions can be listed here (Modules, payments, shipping, order totals, feeds)

[Released] Homepage Slideshow Module

Postby readyman » Tue Apr 06, 2010 5:36 pm

Yep, it's a slideshow module for the frontpage.

No database changes. No messy code tweaks - just upload and go.
No technical knowledge or coding required to upload and manage the slides for your slideshow.

Commercial for now... with perpertual, unlimited use licenses.

http://bit.ly/Homepageslideshow
http://www.alreadymade.com
Follow me on twitter.com/alreadymade
User avatar
readyman
Global Moderator
 
Posts: 731
Joined: Tue May 19, 2009 9:16 pm
Location: Sydney

Re: [Released] Homepage Slideshow Module

Postby RonA » Tue Apr 06, 2010 6:07 pm

Hello readyman!

The back-end looks very well designed... I'm curious though about where the slideshow would be on my home page... is it a fixed position in the center column above the 'latest products' or will we be able to choose any location?

I would like to place the banner on the right side of a two-column table... is this possible?

Would be great if we could see a demo of what the front-end looked like. ;) It's the only thing keeping me from reaching for my wallet.
RonA
 
Posts: 53
Joined: Tue Mar 09, 2010 8:11 am

Re: [Released] Homepage Slideshow Module

Postby readyman » Wed Apr 07, 2010 6:58 am

Yep, I inserted the code for this new section called "middle_top" just above the welcome text in home.tpl. If you want it further down the file, after the welcome section, you just have to move the div.

To insert into your own template, just grab the code from the default template home.tpl file provided and then put it in your template where you want it to appear.

If you need the slideshow in the header, or just after the navigation, then you'll need to grab the code from both the home.php and the home.tpl files.

Yep, the admin section is tight - if you're a coder, then look at the source of the admin tpl files to see what tinkering you can do to make it work the way you want. You'll see that I'm already planning enhancements by the parts I've commented out.
I 'locked' this module to use images for now, because I've made it for a few users that are non-techies, but you can easily insert any content and it will still display as a slideshow
http://www.alreadymade.com
Follow me on twitter.com/alreadymade
User avatar
readyman
Global Moderator
 
Posts: 731
Joined: Tue May 19, 2009 9:16 pm
Location: Sydney

Re: [Released] Homepage Slideshow Module

Postby cumquat » Wed Apr 07, 2010 10:43 am

Hi readyman

This could be what i'm after do you have this running anywhere so i can see the frontend?

Regards

Mick
cumquat
 
Posts: 9
Joined: Mon Dec 21, 2009 11:17 am
Location: London, UK

Re: [Released] Homepage Slideshow Module

Postby OCyvon2 » Mon May 31, 2010 3:34 pm

I bought the slideshow and installed it. It works except there is no slide???
Only one picture and it doesn't move. I put it on the homepage.
Also the sort order doesn't work in the admin. It stays on "0".

What can I do??
Last edited by OCyvon2 on Thu Jun 03, 2010 10:05 pm, edited 1 time in total.
User avatar
OCyvon2
 
Posts: 271
Joined: Sun Jan 31, 2010 12:00 pm
Location: Zaandam, The Netherlands

Re: [Released] Homepage Slideshow Module

Postby dr770 » Tue Jun 01, 2010 7:15 pm

Hi readyman,

ist seems not to work in IE8 by me (7 and 6 not checked, probably also not), cousing js error.

can you check it please?

thanks
Last edited by dr770 on Sun Jun 13, 2010 11:40 pm, edited 1 time in total.
dr770
 
Posts: 18
Joined: Sun Oct 14, 2007 5:53 pm

Re: [Released] Homepage Slideshow Module

Postby OCyvon2 » Tue Jun 01, 2010 7:51 pm

Yes I have the same problem I saw it today
User avatar
OCyvon2
 
Posts: 271
Joined: Sun Jan 31, 2010 12:00 pm
Location: Zaandam, The Netherlands

Re: [Released] Homepage Slideshow Module

Postby laurie » Sun Jun 13, 2010 2:08 pm

doesn't work with 1.48. When update?
laurie
 
Posts: 8
Joined: Thu Jun 10, 2010 10:51 pm

Re: [Released] Homepage Slideshow Module

Postby spikeachu » Sun Jun 13, 2010 8:46 pm

I had this mostly updated for 1.4.8, but was having problems passing the token through to the image manager. PHP i'm ok with. Ajax and Javascript, not so.
spikeachu
 
Posts: 173
Joined: Thu Mar 11, 2010 10:31 pm

Re: [Released] Homepage Slideshow Module

Postby mystifier » Thu Jun 17, 2010 10:44 am

Thanks Readyman, I like this module (v1.4.8 ).

I had a small problem though - In Admin, whatever value I enter in 'Speed' gets ignored and it take the value of 'Delay'.

I changed slideshow_delay to slideshow speed in:
admin/view/template/module/homepageslideshow.tpl

at:
<td><select name="slideshow_speed">
<?php if (isset($slideshow_speed)) {
$selected = "selected";
?>
<option value="1000" <?php if($slideshow_speed=='1000'){echo $selected;} ?>>1000</option>
<option value="2000" <?php if($slideshow_speed=='2000'){echo $selected;} ?>>2000</option>
<option value="3000" <?php if($slideshow_speed=='3000'){echo $selected;} ?>>3000</option>
<option value="4000" <?php if($slideshow_speed=='4000'){echo $selected;} ?>>4000</option>
<option value="5000" <?php if($slideshow_speed=='5000'){echo $selected;} ?>>5000</option>
<option value="6000" <?php if($slideshow_speed=='6000'){echo $selected;} ?>>6000</option>
<option value="7000" <?php if($slideshow_speed=='7000'){echo $selected;} ?>>7000</option>
<option value="8000" <?php if($slideshow_speed=='8000'){echo $selected;} ?>>8000</option>
<option value="9000" <?php if($slideshow_speed=='9000'){echo $selected;} ?>>9000</option>
<option value="10000" <?php if($slideshow_speed=='10000'){echo $selected;} ?>>10000</option>

The save then works okay but it doesn't seem to take much notice of the values even if I hardcode then in:
catalog/view/theme/default/template/module/homepageslide.tpl

eg.
<script type="text/javascript">
$(function() {
$('#slideshow1').cycle({
delay: 7000,
speed: 3000,
pause: true
});
User avatar
mystifier
 
Posts: 779
Joined: Tue May 18, 2010 9:15 am

Re: [Released] Homepage Slideshow Module

Postby mystifier » Thu Jun 17, 2010 11:11 am

It's working now.

In catalog/view/theme/default/template/module/homepageslide.tpl

I think:
delay: <?php echo $delay; ?>,

Should be:
timeout: <?php echo $delay; ?>,
User avatar
mystifier
 
Posts: 779
Joined: Tue May 18, 2010 9:15 am

Re: [Released] Homepage Slideshow Module

Postby mystifier » Fri Jun 18, 2010 9:06 am

To qualify: the TPL change is not a bug - more that it didn't do what I expected.

delay: <?php echo $delay; ?>,
Uses $delay to set the delay before the first transition

timeout: <?php echo $delay; ?>,
Uses $delay to set the delay between transitions (which is what I was expecting).
User avatar
mystifier
 
Posts: 779
Joined: Tue May 18, 2010 9:15 am

Re: [Released] Homepage Slideshow Module

Postby mystifier » Fri Jun 18, 2010 11:48 am

... but you also forgot to add the Link Target in AddImage so you have to Save it and go back in again to set it. ;)
User avatar
mystifier
 
Posts: 779
Joined: Tue May 18, 2010 9:15 am

Re: [Released] Homepage Slideshow Module

Postby twiggy » Sat Jun 19, 2010 9:03 am

oops, just been developing something like this, should have checked the forums first!
twiggy
 
Posts: 319
Joined: Thu Aug 13, 2009 8:43 pm

Re: [Released] Homepage Slideshow Module

Postby OSWorX » Sat Jun 19, 2010 9:10 am

twiggy wrote:oops, just been developing something like this, should have checked the forums first!

Competition is always a good choice ;D
EU-Buttonlösung EU-Cookies OpenCart Rechtskonform
LiveSupport (Chat) Deutsches OpenCart / OCIE Forum
http://osworx.net :: Installation & Update Services for OpenCart, Custom Development
Common modules - Payment modules - Shipping modules - Dt. Sprachpaket
User avatar
OSWorX
Global Moderator
 
Posts: 1896
Joined: Mon Jan 11, 2010 2:52 pm
Location: Austria

Re: [Released] Homepage Slideshow Module

Postby twiggy » Sat Jun 19, 2010 1:21 pm

Suppose, what I have so far doe's have some differences to readyman's so it should give a a choice to people wanting a module like this.
twiggy
 
Posts: 319
Joined: Thu Aug 13, 2009 8:43 pm

Re: [Released] Homepage Slideshow Module

Postby mp4kingdom » Tue Jul 27, 2010 9:29 am

i have 1.4.7, can someone suggest if this will work on my version?
mp4kingdom
 
Posts: 5
Joined: Mon Jul 12, 2010 4:25 am

Re: [Released] Homepage Slideshow Module

Postby readyman » Tue Jul 27, 2010 10:44 am

This module/modification is now free.
http://www.alreadymade.com
Follow me on twitter.com/alreadymade
User avatar
readyman
Global Moderator
 
Posts: 731
Joined: Tue May 19, 2009 9:16 pm
Location: Sydney

Re: [Released] Homepage Slideshow Module

Postby zeuz » Fri Jul 30, 2010 6:56 pm

This module is working fine in Firefox. When I try to view it using IE8, the slideshow got pushed down by the 'right' module(shopping cart, best seller, featured), leaving a gap between "Welcome To Your Store" and the slideshow.

Please help.
zeuz
 
Posts: 2
Joined: Fri Jul 30, 2010 6:48 pm

Re: [Released] Homepage Slideshow Module

Postby Maansy » Sat Jul 31, 2010 12:04 am

is this still free readyman ?
ALL Templates :: 1.5.1+ Templates :: 50%-75% PRICE DROP ONLY at OpencartStuff.com
User avatar
Maansy
 
Posts: 930
Joined: Wed Jun 23, 2010 10:04 pm

Next

Return to Extensions

Who is online

Users browsing this forum: No registered users and 7 guests

Hosted by Arvixe Web Hosting