I am working with magento admin panel, I want to on template path as like we do for front end, I tried it by installed an extention, but its not working.Please let me know how can I do that ?
Goto
app > code > core > Mage > core > etc > system.xml
Line 512
you can see this
<template_hints translate="label">
<label>Template Path Hints</label>
<frontend_type>select</frontend_type>
<source_model>adminhtml/system_config_source_yesno</source_model>
<sort_order>20</sort_order>
<show_in_default>0</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</template_hints>
Change the <show_in_default> to 1 and save.
Then goto admin panel system > configuration > developer > Debug Enable path hint.
Cheers
INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`, `value`)
VALUES ('websites', '0', 'dev/debug/template_hints', '1');
Run the following query:
To Enable:
UPDATE core_config_data set value = 1 where scope = 'default' and scope_id = 0 and path ='dev/debug/template_hints'
To Disable:
UPDATE core_config_data set value = 0 where scope = 'default' and scope_id = 0 and path ='dev/debug/template_hints'
Delete the record when you are done with or set value 0 as described above . Do not forget to remove the cache
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With