Wondering and tired to find templates for working in magento admin ?
Here is a simple solution. Just log into your database and run the
below query and you are done.
INSERT INTO core_config_data (scope, scope_id, path, value) VALUES ('default', 0, 'dev/debug/template_hints', 1), ('default', 0, 'dev/debug/template_hints_blocks', 1);
------------------E--N--j--o--y-------------------------------
i tried to run this query but this gives an error
ReplyDelete#1062 - Duplicate entry 'default-0-dev/debug/template_hints' for key 'config_scope'
@lucky you are getting this error because the above entries are already present in your magento database. You just need to change the value column to 1 from 0 in those rows in 'core_config_data' table and you can see the template hints in admin.
ReplyDeleteHope you have got the solution.:)
This comment has been removed by the author.
ReplyDelete