Coding/Adding HREF command on view_album.php

Devin

Joined: 2002-10-15
Posts: 11
Posted: Tue, 2002-12-03 19:38

Looking at the view_album.php file. On the left side of the slideshow/login line I want to put a href command pointing to my main home URL.

I want to put the same href command in the same spot on view_photos.php

What is the command i need to write?
Thanks.

 
Devin

Joined: 2002-10-15
Posts: 11
Posted: Wed, 2002-12-11 23:56

Can anyone answer this question? Or am I getting no reply because no one knows how to?

thanks!

 
beckett
beckett's picture

Joined: 2002-08-16
Posts: 3473
Posted: Thu, 2002-12-12 01:24

In view_album.php: after line 221 (v1.3.2), line 215 (v1.3.1):

$adminCommands = "<span class ="admin">";

Look down and find where exactly you want the link to go. Add:

$adminCommands .= ' <a href="LINK TO PAGE">TEXT</a> ';

You might need to add spaces to make it look nice.
If you want it in front of all of the commands, then just insert it into line 222. Otherwise, look at all of the other commands and nestle it in where you want it to go.

Same deal in view_photo.php below line 296 (v1.3.2), line 289 (v1.3.1).

-Beckett (

)