Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
In the Guest Book there is a link that takes you back to your web page, but in the Message Board I can't seem to find one. Is there a way to add this link so someone can just click "back to your site" instead of having to hit the back button several times?
Thanks,
Scott
No Back button on the Message Board
Hello Scott,
This requires modifying the mboard.php file
First open mboard.php in a suitable editor.
Find (lines 157-159 in mboard 1.3) and change it to something like
If i am correct the $settings['website_url'] and $settings['website_title'] are already present in the settings.php file and can be set there.
Greetings,
Henrie
This requires modifying the mboard.php file
First open mboard.php in a suitable editor.
Find (lines 157-159 in mboard 1.3)
Code: Select all
<td>
<p><a href="#new"><b>New topic</b></a></p>
Code: Select all
<td>
<?php echo '<p align="center"><a href="'.$settings['website_url'].'">Back to '.$settings['website_title'].'</a></p>'; ?>
<hr>
<p><a href="#new"><b>New topic</b></a></p>
Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.