Show your Magento Shop Categories as a Left Column Side Menu: Customize the built in RWD template and add a shop categories menu listing to your magento store. Make your shop categories show up as side bar menu items automatically. Connect to your magento shop using SSH, with Putty. On the console, use VIM to edit the files. Insert the following snippets of code into your template PHTML files. ./app/design/frontend/rwd/default/template/page/html/sidemenu.phtml <?php $_helper = Mage :: helper ( 'catalog/category' ) ?> <?php $_categories = $_helper -> getStoreCategories () ?> <?php $currentCategory = Mage :: registry ( 'current_category' ) ?> <?php if ( count ( $_categories ) > 0 ) : ?> <ul> <?php foreach ( $_categories as $_category ) : ?> <li> <a href=" <?php echo $_helper -> getCategoryUrl ( $_category ) ?> "> ...