Page 1 of 1

Change the word

Posted: Sat Apr 15, 2006 5:02 am
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

Posted: Sat Apr 15, 2006 7:16 am
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

Posted: Sat Apr 15, 2006 8:35 am
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!