1. Find the following line (near line 640) in includes\languages\YOUR-TEMPLATE\english.php
PHP Code:
///////////////////////////////////////////////////////////
// include email extras
Directly ABOVE it, put this:-
PHP Code:
// Special Text to appear whenever New Products are listed on Index Pages
define('SPECIAL_TEXT', 'This is my special message to you.<br />Here is an example of a hyperlink in this text.<a target="_top" href="http://www.your-link.co.uk">Go here</a>');
You will place your text and links as HTML between the single quotes. (So edit it as you would any define text).
------------------------------------------------------
2. Make a COPY on your HARD DRIVE of:-
includes\templates\template_default\templates\tpl_index_default.php
Open this copy to EDIT, and RIGHT AT THE BOTTOM of the file, place this:-
PHP Code:
<!--SPECIAL TEXT BLOCK START-->
<?php if (SPECIAL_TEXT) { ?>
<div id="" class="specialTextBlock"><?php echo SPECIAL_TEXT; ?></div>
<?php } ?>
<!--SPECIAL TEXT BLOCK END-->
So the last few lines of that php look like this:-
PHP Code:
<?php
$show_display_category->MoveNext();
} // !EOF
?>
</div>
<!--SPECIAL TEXT BLOCK START-->
<?php if (SPECIAL_TEXT) { ?>
<div id="" class="specialTextBlock"><?php echo SPECIAL_TEXT; ?></div>
<?php } ?>
<!--SPECIAL TEXT BLOCK END-->
SAVE the file (on your hard drive) then FTP it to:-
includes\templates\YOUR-TEMPLATE\templates\tpl_index_default.php
(YOUR-TEMPLATE is probably "classic", so you may need to create a sub-folder called "templates" in there.
includes\templates\classic\templates\tpl_index_default.php
-----------------------------------------------------------
STYLESHEET:
As this "DIV" has its own ID, (div id="" class="specialTextBlock") you can apply styles to it in the stylesheet.
-----------------------------------------------------------