
Originally Posted by
kobra
ZenCart by default displays "new products" filtered for the cat/sub-cat being displayed
You shouldn't need a seperate sub cat for ne items
i see kobra! thanks for your reply. :)
another thing.... I am trying to display one banner group in my category pages.. but i found no luck.. i tried to insert
Code:
?>
<?php
if (SHOW_BANNERS_GROUP_SET1 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET1)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerOne" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<?php
}
}
?>
after
Code:
<div class="centerColumn" id="indexCategories">
<?php if ($show_welcome == true) { ?>
<h1 id="indexCategoriesHeading"><?php echo HEADING_TITLE; ?></h1>
<?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
<h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
<?php } ?>
(tpl_index_categories.php)
but nothing has changed.. You guys have any ideas regarding this?