How do I create a simple ‘Hello World’ module in Magento?

First and foremost, I highly recommend you buy the PDF/E-Book from PHP Architect. It’s US$20, but is the only straightforward “Here’s how Magento works” resource I’ve been able to find. I’ve also started writing Magento tutorials at my own website. Second, if you have a choice, and aren’t an experienced programmer or don’t have access … Read more

Parse error: syntax error, unexpected T_STRING in app/design/frontend/base/default/template/catalog/product/new.phtml on line 37 [closed]

This is caused by the third param of your Mage::helper(‘core/string’)->truncate() call, where the ending string delimiter seems to be missing. You get the unexpected T_STRING error, because the interpreter reaches the next string (‘short’), while knowing that the previous string end wasn’t found yet. Replace this line <h3 class=”product-name”><a href=”https://stackoverflow.com/questions/10328245/<?php echo $_product->getProductUrl() ?>” title=”<?php echo … Read more

How do i edit home page of magento

First please check from where the content of the home is come from. you can you template path for it. if its comes from CMS Page you can edit form the admin CMS page. if its a comes from Static block you can change it from the CMS blocks in admin. and if its a … Read more