ClioSport.net

Register a free account today to become a member!
Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • When you purchase through links on our site, we may earn an affiliate commission. Read more here.

PHP & Magento



Anyone any good with PHP and magento, im trying to create a subcatagory landing page and having issues. The issue is that it loads all subcatagories not just the subcatagories for the catagory page this scipt has been used on.

Code:
<?php $_categories = Mage::getModel('catalog/category') ->getCollection(); $_categories->addAttributeToSort('name', 'ASC'); $_categories->addAttributeToSelect('*'); $_categories->addAttributeToFilter('is_active', 1); $_categories->addAttributeToFilter('include_in_menu', 1);       $_collection = $_categories->load(); ?>

any help would be amazin as im startin to lose patience haha
 


Top