kruiser69 Posted May 11, 2003 Posted May 11, 2003 Hi, what i would like to do is just to make some text open in the centre of my catalog once the link is clicked on, any help appreciated Example here: http://durasales.com.au/shop/battery.php ive mucked something up
♥olby Posted May 11, 2003 Posted May 11, 2003 Hi kruiser69. Open catalog/default.php and look for these lines at the bottom: <tr> <td class="main"><?php echo tep_customer_greeting(); ?></td> </tr> <tr> <td class="main"><br><?php echo TEXT_MAIN; ?></td> </tr> <tr> <td><br><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> </tr> <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> The tep_customer_greeting text is defined in your languages/english.php and can be empty or several pages long (up to you). The TEXT_MAIN is defined in languages/english/default.php and can also be several pages long. Then change: <td><br><?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); ?></td> to <td></td> and delete this: <?php include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> HTH Best Regards olby
♥olby Posted May 11, 2003 Posted May 11, 2003 Hi again. No - restore your catalog/default.php to the original. That should do it, unless you've tampered with your catalog/includes/header.php too. If so you have to restore that one too. HTH Best Regards olby
Recommended Posts
Archived
This topic is now archived and is closed to further replies.