在管理面板magento中显示模板路径

时间:2014-03-14 07:26:01

标签: magento

我正在使用magento管理面板,我想在模板路径上就像我们为前端做的那样,我通过安装扩展来尝试它,但它无法工作。请让我知道我该怎么做?

4 个答案:

答案 0 :(得分:7)

转到

  

app>代码>核心>法师>核心>等等>的system.xml

第512行

你可以看到这个

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

<show_in_default>更改为 1 并保存。

然后转到管理面板system > configuration > developer > Debug启用路径提示。

干杯

答案 1 :(得分:4)

INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`, `value`)
       VALUES ('websites', '0', 'dev/debug/template_hints', '1');

运行以下查询:

启用:

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

禁用:

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

完成后删除记录或如上所述设置值0。不要忘记删除缓存

答案 2 :(得分:0)

在您的数据库中运行此查询

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

答案 3 :(得分:0)

只需使用此查询:

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

现在,要从管理面板中删除这些模板路径,只需触发这两个查询:

delete from core_config_data where scope='default' and scope_id=0 and path='dev/debug/template_hints_blocks' and value=1

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

并删除缓存插入查询和删除查询。