coppermine-gallery.com/forum

Support => Older/other versions => cpg1.3.x Support => Topic started by: gpitta on February 07, 2005, 07:03:17 PM

Title: How move "slideshow" icon from Menu
Post by: gpitta on February 07, 2005, 07:03:17 PM
Hello guys,
who knows how can i move the "slideshow" icon from Menu toolbar to vote average stars?  ???

Thank you for support.

G.
Title: Re: How move "slideshow" icon from Menu
Post by: Casper on February 07, 2005, 09:00:19 PM
Open your displayimage.php, and find the;

function html_rating_box()

Now, add this into the globals;

$album, $template_image_rating,

Find;

$pid = $CURRENT_PIC_DATA['pid'];

Now, add this, in a new line;

$slideshow_tgt = "$PHP_SELF?album=$album$cat_link&pid=$pid&slideshow=".$CONFIG['slideshow_interval'];


And now add this into the params array;

'{SLIDESHOW_TGT}' => $slideshow_tgt,
        '{SLIDESHOW_TITLE}' => $lang_img_nav_bar['slideshow_title'],


Now you can move the slideshow link into the image rating box.
Title: Re: How move "slideshow" icon from Menu
Post by: gpitta on February 07, 2005, 09:17:17 PM
Thank you much Casper!!

Something is wrong. the icon appears on the top of the image... but i have understood what you mean.. i will work over this solution.


Thanks.

G.
Title: Re: How move "slideshow" icon from Menu
Post by: Casper on February 07, 2005, 09:32:24 PM
If the icon appears on the image, you have moved the link incorrectly.

It all works fine on my site.
Title: Re: How move "slideshow" icon from Menu
Post by: gpitta on February 07, 2005, 09:33:39 PM
IT WORKS!!!!!

THANK YOU CASPER!!

I FOUND THE MISSING:

You must add:

<a href="{SLIDESHOW_TGT}" title="{SLIDESHOW_TITLE}"><img src="images/slideshow.gif" alt="{SLIDESHOW_TITLE}" border="0" /></a>

in the:

$template_image_rating = <<<EOT


and you must activate Nav Menu.

;o)

G
Title: Re: How move "slideshow" icon from Menu
Post by: Casper on February 07, 2005, 09:36:20 PM
Quote from: Casper on February 07, 2005, 09:00:19 PM
Now you can move the slideshow link into the image rating box.

That is what I meant.
Title: Re: How move "slideshow" icon from Menu
Post by: gpitta on February 07, 2005, 10:31:28 PM
ops..thanks.. i haven't see it.. :o(