What template file do I need to modify (and what code) to swap the order so that Featured Products show above, rather than below the main page content on the home page? Or is there a configuration parameter that makes this happen?
What template file do I need to modify (and what code) to swap the order so that Featured Products show above, rather than below the main page content on the home page? Or is there a configuration parameter that makes this happen?
Check out your admin's Configuration->Index Listing. That configuration group has switches that you can use to identify the order in which the new, special, featured and upcoming products are displayed on the main page as well as the various product listing pages.
This seems to impact enabling/disabling, but not making Featured display above or below main page content. Can you re-point me?
In a copy for your template of tpl_index_default.phpWhat template file do I need to modify (and what code) to swap the order so that Featured Products show above, rather than below the main page content on the home page
Find this complete block of code
Move it to just above this line of codeCode:/** * 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 } ?> <?php if ($show_display_category->fields['configuration_key'] == 'SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS') { ?> <?php
Code:<?php if (DEFINE_MAIN_PAGE_STATUS >= 1 and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
Zen-Venom Get Bitten