Posts

Showing posts from July, 2017

Disable Nuisance Warnings about Windows Filtering Platform

Disable Nuisance Warnings About "Windows Filtering Platform" so that you don't see this in your windows event logs: " The Windows Filtering Platform has blocked a packet. 1) open cmd.exe as Administrator, then paste this cmd in: auditpol /set /subcategory:"Filtering Platform Packet Drop" /success:disable /failure:disable

Show Magento Shop Categories as Left Column Side Menu

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 ) ?> ">