🌍
English
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:
in diapo.php (release 1.2), take a look at the lines :
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 :
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