Page 1 of 1

remove line 'Back to .... | View guestbook | Sign guestbook'

Posted: Tue Jan 02, 2007 2:22 pm
by calumogg.co.uk
Script URL: 1.43
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
remove back to, remove view guestbook, remove sign guestbook

Write your message below:
hi, is it possible to remove the line at the top of the guestbook saying
Back to .... | View guestbook | Sign guestbook
if there is a previous post about it please reply with the link as i couldnt find it. i do not need them as i use frames on my site and have a seperate link to view and sign. thanks

Posted: Tue Jan 02, 2007 5:55 pm
by Klemen
All the html code is inside gbook.php, that particular part starting on line 887:

Code: Select all

echo '<h3 align="center">'.$settings['gbook_title'].'</h3>
<p align="center"><a href="'.$settings['website_url'].'">Back to '.$settings['website_title'].'</a>
| <a href="gbook.php">View guestbook</a>
| <a href="gbook.php?a=sign">Sign guestbook</a></p>
<div align="center">
<center>
';
Try changing that to

Code: Select all

echo '<h3 align="center">'.$settings['gbook_title'].'</h3>
<div align="center">
<center>
';

Posted: Tue Jan 02, 2007 8:28 pm
by calumogg.co.uk
that worked fine, cheers
great script keep up the good work!