Working with magento. See the following code .

<?php echo $this->getChildHtml('topMenu') ?>

Is there an easy way to find where html resides. ie is there somekind of trace i can use?

link|improve this question

70% accept rate
feedback

4 Answers

In the admin go to System > Configuration > Developer, pick a store from the "Configuration Scope" select in the top left corner, then there will be a new option in "Debug" section called "Template Path Hints". Turn this on and refresh your store page again.

This and more is explained in the Designer's Guide to Magento.

link|improve this answer
feedback

I fully agree with the answer of clockworkgeek - the easiest way is to turn on Template Path Hints in System -> Configuration -> Developer section of admin panel (scope of your store must be chosen for this field to appear). After that all your store pages will be rendered with inclusions of red panels, showing the path to templates.

Nice addition is also to turn on Add Block Names to Hints in the mentioned above admin section - so you'll also see block names serving that templates.

These actions will allow you to easily trace 95% of all design.

However, there are also some blocks that do not render phtml. Or they overload standard toHtml() method in such a way that it doesn't show template's path. These are more complicated cases. To find the place where design is created you should either:

  1. Learn layout-blocks-phtml model of View part in Magento - Designer's Guide to Magento is a good place to study it. Then you'll be able to find blocks and templates by layout structure.

  2. Install X-Debug, set it up for your IDE, set a breakpoint at <?php echo $this->getChildHtml('topMenu') ?> line and dig in this line. It's the easiest and most universal way to solve your problem (although knowledge of Magento design structure still is a must).

link|improve this answer
feedback


If you want an easy way without going to the backend everytime for turning on/off the template path hints, you can use the following community extension called Easy Template Path Hints: http://www.magepsycho.com/easy-template-path-hints.html

Morever it works for both frontend and backend by passing query string as like in joomla.

This can be very handy tool for Magento Developers.

Happy E-Commerce!!

link|improve this answer
feedback

The answer to your query lies in enabling the Template Path Hints inside the admin panel by following System > Configuration > Developer .

You can view a step by step guide of how to enable this here http://www.excellencemagentoblog.com/magento-template-path-hints-magento

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.