Add the below code in the catalog.xml in the product view section <block type=”review/product_view_list” name=”product.info.product_additional_data” as=”reviews” template=”review/product/view/list.phtml”> <block type=”review/form” name=”product.review.form”…
Here is the code to get the cms block in magento front end. $this->getLayout()->createBlock(‘cms/block’)->setBlockId(‘blockidentifier’)->toHtml() In the editor you can simply…
below is the code to show magento pages in a drop down box <select name=”page”> <?php foreach (Mage::getResourceModel(‘cms/page_collection’) as $page){…
Get title <?=Mage::getSingleton(‘cms/page’)->getTitle()?> Get Identifier <? echo Mage::getBlockSingleton(‘cms/page’)->getPage()->getIdentifier()?> Get Page ID <? echo Mage::getBlockSingleton(‘cms/page’)->getPage()->getId()?>