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?
|
Working with magento. See the following code .
Is there an easy way to find where html resides. ie is there somekind of trace i can use?
| ||||
|
feedback
|
|
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. | |||
|
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:
| |||
|
feedback
|
|
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!! | ||||
|
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 | |||
|
feedback
|