Products     Magento Extension     PCI-Shopping-Carts     Templates       CRELoaded     WordPress Modules     osCommerce Modules       osCommerce Addons       osCommerce Features       osCommerce Management       Payment Modules     CRELoaded Modules       CRE Loaded Addons       CRE Loaded Features       CRE Loaded Management       Payment Modules       CRELoaded Services
Free Stuff
Customization
Templates
Compare Products
You have no items to compare.
Affiliate Info
Affiliate Program FAQ
Affiliate Log In
Recent Orders
Hot Keywords: Order Notification, Order Search, Coupon, Flash Board, Compare, Floating Message, Tracking, Moneris, RSS, Visitor Filter

  "Dynamenu" for osCommerce - Dynamic Fly-Out, Drop-Down, Tree Category Menu

The following osCommerce contribution is a free Opensource code originated from official osCommerce website and provided for your reference only, you may download the original contribution file(s) and install it on your own; or you may request a Paid Installation Service from Agents Of Power; Agents Of Power does the "AS IS" installation on your website, we do not guarantee it will work properly on your website. Extra Paid service is available for repairing the problem from the original contribution or from your website.
For those using Simple Template System (STS) ver 4+, to replace the STS categories box with Dynamic Menu System in your STS template:

Open /includes/modules/sts_inc/sts_column_left.php

Find:
// Get categories box from db or cache
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_categories_box();
} else {
include(DIR_WS_BOXES . 'categories.php');
}

Change to:
// Get categories box from db or cache
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_categories_box();
} else {
include(DIR_WS_BOXES . 'dm_categories.php');
}

Open /path to your/sts_template.html

Place $categorybox into your STS template page wherever you want the new dynamenu box to appear.

Follow dynamenu instructions for style of menu you want to appear.

I recommend copying and pasting the dynamenu css into your catalog stylesheet.css - makes it easier on STS templates to link to.
If you got blank page on checkout you can fix it by delete the white space at the end of the ProductsInCategory.php file.

in the box file find :

$output .= str_repeat(".", $level+$lvl_adjust).'|'.$val.'|'.tep_href_link(FILENAME_DEFAULT, $cPath_new).'|'.$this_title.'|'.$menu_icon_file.'|'.$this_selected.'|'.$this_expanded."n";

and change with

$products_in_category = tep_count_products_in_category($key);
if ($products_in_category >0) {
$output .= str_repeat(".", $level+$lvl_adjust).'|'.$val.'|'.tep_href_link(FILENAME_DEFAULT, $cPath_new).'|'.$this_title.'|'.$menu_icon_file.'|'.$this_selected.'|'.$this_expanded."n";
}
   Posted on: 02/26/2009     See contribution details Request Installation with Paid service