Guest Posted January 25, 2009 Share Posted January 25, 2009 I am unable to move any boxes to the right side/ column using the InfoBox Admin contribution. I can move anything to the left. I also can not remove the languages and currencies boxes via the admin console. I think I should see a line in catalog/includes/column_right.php for each box that belongs in the right column but i dont, see the file below. The site is OfSpiritAndSage.com Here is my column_right.php file. <?php /* $Id: column_right.php,v 1.15 2002/03/13 13:52:20 lango Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ $column_query = tep_db_query('select configuration_column as cfgcol, configuration_title as cfgtitle, configuration_value as cfgvalue, configuration_key as cfgkey, box_heading from ' . TABLE_THEME_CONFIGURATION . ' order by location'); while ($column = tep_db_fetch_array($column_query)) { $column['cfgtitle'] = str_replace(' ', '_', $column['cfgtitle']); $column['cfgtitle'] = str_replace("'", '', $column['cfgtitle']); if ( ($column[cfgvalue] == 'yes') && ($column[cfgcol] == 'right')) { define($column['cfgkey'],$column['box_heading']); if ( file_exists(DIR_WS_BOXES . $column['cfgtitle'] . '.php') ) { require(DIR_WS_BOXES . $column['cfgtitle'] . '.php'); } } } ?> <tr> <td class="pageHeading" height="100%" valign="top"> <?php if ( file_exists('includes/classes/thema/' . SITE_THEMA . '/images/backend.gif')) { ?> <IMG SRC="includes/classes/thema/<?php echo SITE_THEMA;?>/images/backend.gif" width="100%"> <?php } ?> </td> </tr> Titles on left side ( i can see them all) what's new categories featured shop by price manufacturers search information header tags testbox manufacturers These are set to right ( i cant see any of them) loginbox shopping cart wishlist order history best sellers specials reviews manufacturer info tell a friend product notifications These i cant delete languages currencies There are currently 9 boxes in the left column and 12 boxes in the right column I did a reinstall over the top of InfoBox Admin, and nothing changed. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.