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.
Posts: 11
Can anyone answer this question? Or am I getting no reply because no one knows how to?
thanks!
Posts: 3473
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 (
)