thankyou, i have it working
just to make sure ive done it correctly, i will just briefly explain incase you see a way i can streamline it
/includes/extra_datafiles/extra_define_pages.php
<?php
/**
* @package Pages
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
*/
// Specials
define('DEFINE_SPECIALS_STATUS', '2');
define('FILENAME_DEFINE_SPECIALS', 'define_specials');
?>
/includes/modules/pages/specials/header_.php
// include template specific file name defines
$define_page = zen_get_file_directory(DIR_WS_LANGUAGES . $_SESSION['language'] . '/html_includes/', FILENAME_DEFINE_SPECIALS, 'false');
/includes/templates/myoveridefolder/templates/tpl_specials_default.php
<?php if (DEFINE_SPECIALS_STATUS >= '1' and DEFINE_SPECIALS_STATUS <= '2') { ?>
<div id="contactUsNoticeContent" class="content">
<?php
require($define_page);
?>
</div>
<?php } ?>
includes/languages/english/html_includes/myoveridefolder/define_specials.php
this contains my text and images in html format
Ta for help
Rob


Reply With Quote

