ShareYou can change the default welcome Message in magento For Guest or Not logged in user In magento admin go[…]
Read moreAuthor: admin
How to call a .phtml block file into another .phtml file in magento
Shareyou can call a .phtml block file into another .phtml like <?php echo $this->getLayout()->createBlock(‘catalog/product_list_related’)->setTemplate(‘catalog/product/list/related.phtml’)->toHtml(); ?>
Read moreHow to change page layout in Magento
Share <default> <reference name=”root”> <action method=”setTemplate”><template>page/2columns-left.phtml</template></action> </reference> <default>
Read moreRemove column from page
Share<default><remove name=”[your found block name]” /></default> Example <default> <reference name=”left”> <remove name=”left” /> </reference> </default> Above example will remove left column from the page
Read more