回答:
データベースを直接変更することでそれを行うことができます。あなたがphpMyAdminのようなものを持っているなら、それはアクセスを得るための良い方法です。このSQLを入力します。
INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`, `value`)
VALUES ('websites', '0', 'dev/debug/template_hints', '1');
パスのヒントが完了したら、レコード全体を削除するのではなく、[ からフィールドをcore_config_data
更新] から一致するレコードを削除するだけです。追加したばかりなので、おそらく最後のレコードになります。value
0
それがそうならmagento1.x
、に行きます
app/code/core/Mage/Core/etc/system.xml
最初にこのファイルのバックアップを取り、コードの下を変更します
<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>1</show_in_default> <!--change this value to 1-->
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</template_hints>
そして、システム->構成->開発者から設定をon
変更し、テンプレートパスのヒントを設定しますこれをデフォルトレベルで変更しないと、ヒントが表示されません
完了したらこのファイルを元に戻します
あなたがmagento開発者なら
app / code / core / Mage / Core / Block / Template.php以下のように:
public function fetchView($fileName)
{
.......
.......
//Commented to show the hints everywhere
//Line #221
//if ($this->getShowTemplateHints()) {
......
......
if (self::$_showTemplateHintsBlocks) { //Comment if you want to see the block hints
........
........
} //Comment if you want to see the block hints
//}
.......
.......
//Line #251
//if ($this->getShowTemplateHints()) {
.......
//}
}
完了したら、これを元に戻すことを忘れないでください
Magento 2の場合
Store > Configuration > Advanced > Developer > Debug > Enabled
Template Path Hints for Admin > Yes
拡張機能「簡単なテンプレートパスヒント」を使用して、フロントエンドとバックエンドのテンプレートヒントを有効にできます。管理者とフロントエンドの両方のヒントを提供するため、多くの点で有益です。ヒントを使用するには、URLの後に特定のキーワードの接尾辞を付けてURLを変更します。Magentoのデフォルトのテンプレートヒントを有効にする必要はありません。
https://www.magentocommerce.com/magento-connect/easy-template-path-hints.htmlts.html
magento-1.9バージョンでテンプレートパスヒントを有効にする場合。2つの方法があります。
システム>構成>現在の構成スコープ(左上)>メインWebサイトに変更>詳細設定>開発者>デバッグ>有効 管理者用テンプレートパスヒント>はい
拡張機能「Easy Template Path Hints」を使用して、フロントエンドとバックエンドのテンプレートヒントを有効にできます。https://www.magentocommerce.com/magento-connect/easy-template-path-hints.html
magento管理ページのテンプレートヒントを有効/無効にする方法は2つあります。
1つはFTP、もう1つはデータベースを使用します。
FTP:app / etc / config.xmlを編集します
<config>
...
<stores>
<admin>
<dev>
<debug>
<template_hints>1</template_hints>
<template_hints_blocks>1</template_hints_blocks>
</debug>
</dev>
</admin>
</stores>
</config>
DATABASE:これらの2行をデータベースに挿入します。
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);
ここでは、変更の無効化または復元に関する追加の詳細があります。
/app/etc/local.xmlを開き、次のコードを追加します
<config>
...
<websites>
<admin>
<dev>
<debug>
<template_hints>1</template_hints>
<template_hints_blocks>1</template_hints_blocks>
</debug>
</dev>
</admin>
</websites>
</config>
または、次のようにデータベーステーブルで行うことができます
INSERT INTO
core_config_data
(scope
、scope_id
、path
、value
)VALUES( 'ウェブサイト'、 '0'、 'DEV /デバッグ/ template_hints'、 '1');