Magento. Display new products on the home page (block)

Open Magento admin panel Go to CMS>Pages>Home page Switch to the content tab Insert the following code: {{block  type="catalog/product_new" column_count="6"  products_count="12" name="home.catalog.product.new"  alias="product_homepage"  template="catalog/product/list.phtml"}} Where: column_count="6" – number of the…

Adding links to the Top menu in Magento

Magento V 1.9.1 >rwd/template/page/html/topmenu.phtml >add the following code <?php $routeName = Mage::app()->getRequest()->getRouteName(); $identifier = Mage::getSingleton('cms/page')->getIdentifier(); ?> <ul id="nav"> <li class="level0 home level-top <?php if($routeName == 'cms' && $identifier == 'home')…