Magento News

 

adding a magento page to the catalog

I want to add another page in the magento module like the following…

<catalog_wizard_default translate="label">
  <reference name="content">
   <block type="catalog/navigation" name="catalog.topnav" template="catalog/navigation/top.phtml"/>
            <block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml"/>
  </reference>
 </catalog_wizard_default>

so when customer types in the url, they can do it like so

domain.com/catalog/wizard. I have no idea how to do this. I tried adding another action in the catalog controller like the following

  public function wizardAction(){
  $this->renderLayout();
 }

But this doesnt seem to work.

adding a magento page to the catalog

Possibly Related Posts:


 

Leave a Reply