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

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
calumogg.co.uk
Posts: 5
Joined: Tue Jan 02, 2007 2:08 pm

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

Post 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
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post 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>
';
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
calumogg.co.uk
Posts: 5
Joined: Tue Jan 02, 2007 2:08 pm

Post by calumogg.co.uk »

that worked fine, cheers
great script keep up the good work!
Post Reply