Wednesday, July 27, 2011

See template path hint in Magento Admin Panel

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-------------------------------

3 comments:

  1. i tried to run this query but this gives an error

    #1062 - Duplicate entry 'default-0-dev/debug/template_hints' for key 'config_scope'

    ReplyDelete
  2. @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.
    Hope you have got the solution.:)

    ReplyDelete
  3. This comment has been removed by the author.

    ReplyDelete