I would like to switch the center box order of Featured and Specials on my main page: http://deadseamarket.com but I seem to be having issues.
I tried resorting under Admin->Configuration_>Index Listing but it seems to have no effect.
I edited tpl_index_default.php by moving
aboveCode:<?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS') { ?> <?php /** * display the Special Products Center Box */ ?> <?php require($template->get_template_dir('tpl_modules_specials_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_specials_default.php'); ?> <?php } ?>That didn't do the trick either. Any suggestions on how I might do this? Seems like it should be simple but it is alluding me.Code:<?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS') { ?> <?php /** * display the Featured Products Center Box */ ?> <?php require($template->get_template_dir('tpl_modules_featured_products.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_featured_products.php'); ?> <?php } ?>
thanks!



