Enable template path hint in admin pages - Magento

后端 未结 9 1119
时光取名叫无心
时光取名叫无心 2020-12-07 16:18

I want to enable template path hints in admin panel. I know how to do it for the front end, but for back end?? I actually want to edit the admin panel .

Thanks in a

9条回答
  •  攒了一身酷
    2020-12-07 16:52

    Go to your Database and Just run this query:

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

    To disable them again, run this query:

    UPDATE core_config_data set value = 0 where scope = 'default' and scope_id = 0 and path ='dev/debug/template_hints'
    

    To enable again run this query:

    UPDATE core_config_data set value = 1 where scope = 'default' and scope_id = 0 and path ='dev/debug/template_hints'
    

提交回复
热议问题