how can I create a block in the right column visible in all pages including the homepage without taping the module name?

Thank you.

link|improve this question

You might want to use a word other than "module" to describe what you're after. "Module" has a very specific meaning in magento, and using it wrong means people will be less likely to help. – Alan Storm Dec 15 '10 at 15:33
I'm total beginner in magento, what's the right word to use here Sir? – Bizboss Dec 15 '10 at 16:48
2  
If you haven't already read and learn about blocks and other theming tasks. – clockworkgeek Dec 15 '10 at 17:30
1  
what do you mean by "taping"? I've changed your question to use "block" instead of "module" which is the correct term. – Jonathan Day Dec 15 '10 at 23:16
feedback

1 Answer

up vote 0 down vote accepted

Hoping to have understood well your question...

1) Create a module (for example Mynamespace/Mymodule)

2) Create a block in your module (for example Mynamespace/Mymodule/Block/Myblock)

3) Create a phtml file for that block (YOURTHEMEDIR/template/mymodule/myblock.phtml)

4) Edit config.xml of the module "Mymodule" so that it will load a layout update file (YOURTHEMEDIR/layout/mymodule.xml):

<frontend>
...
<layout>
    <updates>
    <mymodule>
        <file>mymodule.xml</file>
    </mymodule>
    </updates>
</layout>
...
</frontend>

5) Inside your mymodule.xml put something like this:

<?xml version="1.0"?>
<frontend>
    <layout>
        <default>
            <reference name="right">  <!-- this is the name of the right column block -->
                <block type="mymodule/myblock" name="myblock" template="mymodule/myblock.phtml" /> 
            </reference>
        </default>
    </layout>
</frontend>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.