Reputation: 719
I'm learning magento and still trying to figure out which views are rendered when you go to a specific URL.
for an example if I go to the login screen which has the URL;
http://localhost/magento-sample/index.php/customer/account/login/
I have installed a theme on it and now the app\design\frontend has three folders as;
please help me to locate the rendering view.
thanks in advance
Upvotes: 4
Views: 121
Reputation: 719
Guys I found out a way to easily find out.
just go to;
admin panel> configuration > developer(left menu bottom most option) > debug
and set "Template Path Hints" to "yes"
This will give the directory path for all the views rendered on the screen.
Upvotes: 1
Reputation: 2233
If by view you mean a template file then it is going to be
app/design/PackageName/ThemeName/template/customer/form/login.phtml
Upvotes: 1