Slider (Javascript slider on album list page) - Page 4 Slider (Javascript slider on album list page) - Page 4
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Slider (Javascript slider on album list page)

Started by Timos-Welt, March 22, 2008, 03:50:45 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

andyleery

There should be. Maybe you have JS deactivated. May I get a screen?

Timos-Welt

Found it (it was a cache problem on my side).

Both scripts (slider and imageflow) have huge display problems. IMO it's a wonder that they work at all in this context. Your site's HTML is really really really invalid.
Check here:
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.bollybilder.de%2F&charset=iso-8859-1&doctype=Inline&ss=1&group=0&user-agent=W3C_Validator%2F1.591

Please fix your html. All the positioning bugs should be gone then.

regards
Timo

Timos-Welt

BTW:
It might help you with ImageFlow to set "Show Imageflow in standard table of the theme" to "No".
It might make the slider more stable if you increase the number of pics from 15 to 30.

andyleery

Many of the Mods/Plugins must be bad codet, which I have installed over month.
I didnt do much by my self. But thx for your help. I will keep it like it is. In FF and IE it looks ok. Only this one problem I have right now.
Are other things also not working correct on the mainpage on your client?

I tried your solution but it didnt work.

Fabricio Ferrero

Hi! I have been using this script for a while in my local installation and works great. The problem appears when I uploaded to the web. After trying very hard to fix it, I give up and I uninstalled. Then, I downloaded a fresh copy of this plugin and installed again, without luck. Still doesn't work. I don't use enlarge it. I just need the simple slider feature. Any advice?

Link: http://mevistoonline.com.ar/fotos/index.php
Read Docs and Search the Forum before posting. - Soporte en español
--*--
Fabricio Ferrero's Website

Catching up! :)

Timos-Welt

Simply try the new version (from EnlargeIt! zip) and set "Use EnlargeIt!" to no. Does this work?

Fabricio Ferrero

Yes, I'm using the v1.73. And I have "Use EnlargetIt!" seted to No. And still doesn't work. Weird problem. It work perfect on my local installation. I check in 2 diferent browser. And I checked in other pc, doesn't work.

What to do now?  :(
Read Docs and Search the Forum before posting. - Soporte en español
--*--
Fabricio Ferrero's Website

Catching up! :)

Timos-Welt


Fabricio Ferrero

Voila!!! Working perfect right now!! Thank you very much for the very fast support!

Great plugin!

Cheers,

P.S: Feel free to PM me in case you're going to write a new plugin and need a spanish tranlation. Thanks!
Read Docs and Search the Forum before posting. - Soporte en español
--*--
Fabricio Ferrero's Website

Catching up! :)

icobgr

Hi, I have a little issue with the slider. My max thumb size (height) is set to 200px. So, in the slider it uses this size. If I set smaller height, for example 80px in the configuration of the slider, it still uses the max height of the thumbs but do not resize to this smaller height. Is it possible to resize images in the slider to smaller height that set for max thumbs height? If it is not possible in this version (I got it from enlargeit), can you help me what to change in the code?

Joachim Müller


icobgr

I can not find how to edit my previous post, so here is my gallery.

goku

im sorry im kind off confuse the main page says that this plugin have a version 2.01 but i can only see the download option for 1.73 w what should i do?

Timos-Welt

There's a slider_for_cpg1_4_x_vXXX.zip inside the EnlargeIt_plugin_vXXX_for_CPG14x.zip.

goku

Quote from: Timos-Welt on November 06, 2008, 08:46:46 PM
There's a slider_for_cpg1_4_x_vXXX.zip inside the EnlargeIt_plugin_vXXX_for_CPG14x.zip.
oh ok thanks buddy!! i have installed it by plugin manager but nuthing is sliding on the page. i checked its settings through slider panel and tis on and enlarge it is also enabled. please help.
here is the link www.gokufanclub.com/cpg/

Timos-Welt


goku

oh im so sorry i thoguht it would also be direct like other plugins :D . one more thing wht is this image flow its also in that download of enlarge it?

Joachim Müller

Read the thread that deals with ImageFlow instead of trying to hijack an announcement thread for something else. Respect board rules!

Timos-Welt


lineart

can you add to your plugin similar settings?

Quote
To exclude some albums, first, you must know the id album and modify the line $query= as (if you want exclude album #15):
Code:
$query = "SELECT * FROM {$CONFIG['TABLE_PICTURES']} WHERE approved = 'YES' AND aid <> 15 ORDER BY RAND() LIMIT $limit";

They are other possibilities if you want limit the choice of pictures to some albums (ie albums #15 and #20):
Code:
$query = "SELECT * FROM {$CONFIG['TABLE_PICTURES']} WHERE approved = 'YES' AND aid = 15 OR aid = 20 ORDER BY RAND() LIMIT $limit";

or for only 1 album (ie album #15) :
Code:
$query = "SELECT * FROM {$CONFIG['TABLE_PICTURES']} WHERE approved = 'YES' AND aid = 15 ORDER BY RAND() LIMIT $limit";

///Or I have not found them?