#1 2003-08-07 20:47:21

gooey
Guest

Upload A Picture Text Link

Is it possible to customize the upload a picture text link? I would like to use an image link instead. The reason is that since I included alot of welcome text for each category it would be easy for someone to miss the upload link if they thought it was all normal text. If I can do this, how?

BTW, this is a great script you have written!   :razz: 

 

#2 2003-08-08 23:10:00

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
13934

Re: Upload A Picture Text Link

in diapo.php (release 1.2), take a look at the lines :

Code:

    395                 if ( $page['cat_site_id'] == 1 && $conf['upload_available'] == "true" )
    396                 {
    397                         $output.= "<br /><a href=\"".add_session_id_to_url( "./upload.php?cat=".$page['cat']."&expand=".$page['expand'] )."\">".$lang['upload_picture']."</a>";
    398                 }

I propose you to change it to :

Code:

if ( $page['cat_site_id'] == 1 && $conf['upload_available'] == "true" )
{
     $output.= '<br /><a href="'.add_session_id_to_url( './upload.php?cat='.$page['cat'].'&expand='.$page['expand'] ).'"><img src="./images/upload.png" title="'.$lang['upload_picture'].'" /></a>';
}

and place your "upload link picture" as upload.png in the directory "images"

Offline

 

Board footer

Powered by FluxBB

github twitter newsletter Donate Piwigo.org © 2002-2025 · Contact