trex Posted April 9, 2004 Posted April 9, 2004 Hello how can I do, who boxes are indicated, which not, e.g. with product_info.php faqdesk box not indicated? <_< thanks
241 Posted April 9, 2004 Posted April 9, 2004 This is due to the fact that the includes for the faqdesk in catalog/includes/column_right.php are contained in the if and else statements. To permanently show the faqdesk move the includes out of the if and else statement. If you post your column_right.php I will alter the code for you, if you are unsure how to do this. No longer giving free advice. Please place deposit in meter slot provided. Individual: [=] SME: [==] Corporation: [===] If deposit does not fit one of the slots provided then you are asking too much! Is your Osc dated try Phoenix raising oscommerce from the ashes.
trex Posted April 9, 2004 Author Posted April 9, 2004 thanks for your help <?php /* $Id: column_left.php,v 1.15 2003/07/01 14:34:54 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_categories_box(); } else { include(DIR_WS_BOXES . 'categories.php'); } if ((USE_CACHE == 'true') && empty($SID)) { echo tep_cache_manufacturers_box(); } else { include(DIR_WS_BOXES . 'manufacturers.php'); } require(DIR_WS_BOXES . 'whats_new.php'); require(DIR_WS_BOXES . 'search.php'); require(DIR_WS_BOXES . 'faqdesk.php'); ?>
Recommended Posts
Archived
This topic is now archived and is closed to further replies.