You are here:  » Front Page Text

Support Forum



Front Page Text

Submitted by spanky on Sun, 2007-10-28 11:26 in

Could you tell me what file I would edit in order to display some welcome text on the front page after the search box. (only want to display on the index page)

Submitted by support on Sun, 2007-10-28 15:26

Hi,

The file you need to edit is index.php. Look for the following code (line 10 in the distrbution):

require("html/searchform.php");

Because the script is in PHP mode at this point, if you want to insert some simple HTML, you will need to close the PHP tags, and then re-open them again afterwards, so add the following to your index.php after the above code:

?>
 <p>Your HTML goes here!</p>
<?php

Cheers,
David.