2
<?xml version="1.0"?>
<layout version="0.1.0">
    <default>
        <reference name="left">
            <block name="customer_test_left" type="core/template" template="customer/form/test.phtml" />
        </reference>
    </default>
</layout>

under app\design\frontend\default\awesome\layout\local.xml

and

<?php echo "Hello World" ?>

under app\design\frontend\default\awesome\template\customer\form\test.phtml

Now the block is not showing in any page under left column

Could any one please help me...

Marius
  • 197,939
  • 53
  • 422
  • 830
prasad maganti
  • 912
  • 2
  • 17
  • 36

2 Answers2

2

The page which i am looking under left column for particular block, that page xml defines remove name="left". sorry if i not provided complete information. As i m learner of magento, it took some time and provides the needed information.

prasad maganti
  • 912
  • 2
  • 17
  • 36
1

Not sure what is the problem. I am just guessing what could be the problems:

  • In Admin panel, system -> Design, Check if there are any "Design changes".
  • In Admin panel, system -> Configuration -> Design:

    - In Package section, Current package name should be "default".
    - In Themes section, Default field should have the current theme name i.e "awesome".
    
  • Try adding semicolon at the end of your code in template as shown below:

    <?php echo "Hello World"; ?>
    
Mr_Green
  • 1,615
  • 4
  • 31
  • 50