Try the Demo

Magento Forum

   
Category menu at product page
 
pboogaard
Jr. Member
 
Total Posts:  2
Joined:  2012-03-13
 

How do I add the category menu to the left side of the product page? For example:
http://www.wehkamp.nl/beeld-geluid/televisies/FB4/722516/C26_6F1_FB4_722516/

 
Magento Community Magento Community
Magento Community
Magento Community
 
MagikSwapna
Sr. Member
 
Total Posts:  77
Joined:  2010-12-14
 

Hello,

To add category menu at left side add following code under catalog.xml file
<reference name="left">
<block type="catalog/navigation" name="catalog.left_nav" before="-" template="catalog/navigation/left_nav.phtml"/>
</reference>

 Signature 

Swapna | Magikcommerce
Find us at http://www.magikcommerce.com
Follow us http://twitter.com/magikcommerce
...................................................................................
Use coupon code “MAGIK2012” to get a
5% discount on all our Themes & Extensions.
...................................................................................

 
Magento Community Magento Community
Magento Community
Magento Community
 
code2012
Member
 
Total Posts:  37
Joined:  2012-09-17
 

<?php
$obj = new Mage_Catalog_Block_Navigation();
$store_cats = $obj->getStoreCategories();
$current_cat = $obj->getCurrentCategory();
$current_cat = (is_object($current_cat) ? $current_cat->getName() : '');?>
<?php foreach ($store_cats as $cat)
{ if ($cat->getName() == $current_cat) {
echo '<li style="padding-left:5px;">
<a href="'.$this->getCategoryUrl($cat).'">'.$cat->getName()."
</a>n<ul>n";
foreach ($obj->getCurrentChildCategories() as $subcat)
{ echo '<li style="padding-left:15px;">
<a href="'.$this->getCategoryUrl($subcat).'">'.$subcat->getName()."</a>
</li>n"; }
echo "</ul>n</li>n"; }
else
{ echo '<li><a href="'.$this->getCategoryUrl($cat).'">'.$cat->getName()."
</a></li>n"; }}

?>

 
Magento Community Magento Community
Magento Community
Magento Community
 
davidmst
Sr. Member
 
Avatar
Total Posts:  231
Joined:  2012-02-08
 

this is the best Menu extensions smile

Magento Connect : Menu Creator Pro
Visit Extension Page: http://www.MenuCreatorPro.com

Live Demo: http://MenuCreatorPro.com/livedemo/

Backend Demo: http://menucreatorpro.com/livedemo/index.php/admin

User Guide: http://menucreatorpro.com/wiki/index.php?title=User_manual

 Signature 

Free & Paid Magento extensions by MageBay
Mega Dropdown Menu, Left Mega Menu, Accordion and Responsive Menu for Magento. MCP MenuCreatorPro is a great Menu Extension
http://menucreatorpro.com/
http://menucreatorpro.com/livedemo/
http://menucreatorpro.com/livedemo/index.php/admin/

 
Magento Community Magento Community
Magento Community
Magento Community
 
Monty22
Guru
 
Avatar
Total Posts:  674
Joined:  2013-01-01
 

Hi,

Check this for Magento Vertical Category Menu --- http://www.magentothemess.com/archives/22

Hope this will help you!!

Thanks

Monty
iLoveMage

Get 25% discount on all our Magento Extensions.

 Signature 

Get 15% discount on all our extensions Use code MON15 | Risk-free purchase with our 14 days Money Back Guarantee policy!

 
Magento Community Magento Community
Magento Community
Magento Community
 
logangibs
Jr. Member
 
Total Posts:  13
Joined:  2012-12-07
 

@code2012

you code is amazing thanks for sharing such nice code. your work is appreciated .
if you have move information regrading the category menu then share it.

 Signature 

One of the Biggest Website Development Company in India - EnternalsoftSoultion

 
Magento Community Magento Community
Magento Community
Magento Community
Magento Community
Magento Community
    Back to top