Change the word

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
Chair
Posts: 3
Joined: Fri Apr 14, 2006 9:34 pm

Change the word

Post by Chair »

Script URL:
Version of script:
Version of PHP:
Hosting company:
Have you searched THIS FORUM for your problem:
(if not please do before posting)
If so, what terms did you try:

Write your message below:

I like your guestbook. :)

How can i change the word "Back to my MY guestbook" to "Home"

Back to My Guestbook | View guestbook | Sign guestbook

Thanks
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Post by Henrie »

Hello Chair,

This can be done in two steps:

1.
This requires editing the gbook.php file.
Find this line (line 648 in GBook version 1.35)

Code: Select all

<p align="center"><a href="'.$settings['website_url'].'">Back to '.$settings['website_title'].'</a>
and change it to this

Code: Select all

<p align="center"><a href="'.$settings['website_url'].'">'.$settings['website_title'].'</a>
2.
In the settings.php find

Code: Select all

$settings['website_title']="My lovely website";
and change it to

Code: Select all

$settings['website_title']="Home";
I think this way it is changed the way you want it.

Greetings,
Henrie
Chair
Posts: 3
Joined: Fri Apr 14, 2006 9:34 pm

Post by Chair »

Henrie wrote:Hello Chair,

This can be done in two steps:

1.
This requires editing the gbook.php file.
Find this line (line 648 in GBook version 1.35)

Code: Select all

<p align="center"><a href="'.$settings['website_url'].'">Back to '.$settings['website_title'].'</a>
and change it to this

Code: Select all

<p align="center"><a href="'.$settings['website_url'].'">'.$settings['website_title'].'</a>
2.
In the settings.php find

Code: Select all

$settings['website_title']="My lovely website";
and change it to

Code: Select all

$settings['website_title']="Home";
I think this way it is changed the way you want it.

Greetings,
Henrie

Thank you!
Post Reply