Using your templates and overrides, customize the best_sellers.php sidebox with the code in red:
Customize the whats_new.php sidebox with the code in red:Code:// bof: turn off best sellers on home page if ($this_is_home_page) { $show_best_sellers= false; } // eof: turn off best sellers on home page if ($show_best_sellers == true) {
and then lower in the code:Code:// bof: turn off whats_new on home page if ($this_is_home_page) { $show_whats_new= false; } else { $show_whats_new= true; } // eof: turn off whats_new on home page // display limits
Code:if ($show_whats_new && $random_whats_new_sidebox_product->RecordCount() > 0 ) {


Reply With Quote

