回答:
Magentoでサードパーティのスクリプトを追加するには、次の方法をお勧めします。
1)テーマレイアウト更新ファイル(できればlocal.xml)を開きます
2)次のXMLコードを追加します。
<default>
<reference name="after_body_start">
<block type="core/template" name="after_body_start_script" template="page/html/scripts/after_body_start.phtml" />
</reference>
<reference name="before_body_end">
<block type="core/template" name="before_body_end_script" template="page/html/scripts/before_body_end.phtml" />
</reference>
</default>
3)ファイルに関連するスクリプトを追加するpage/html/scripts/after_body_start.phtml
か、
page/html/scripts/before_body_end.phtml
General > Design > Footer > Miscellaneous HTML
この設定により、bodyタグを閉じる直前にコードが追加されます。
bodyタグの直後にコードを追加する場合は、XMLリファレンスを使用する必要があります after_body_start
<block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
<label>Page Top</label>
</block>
after_body_start
コードを参照して追加することができます。
<reference name="after_body_start">
// your block and template goes here..
</reference>
Magentoアカウントにログインして、本文の終了タグの前にタグをインストールしたら、次のパスを使用することをお勧めします。
システム>構成>デザイン> HTMLヘッド>フッター>その他のフッター
ここで、本文の終了タグの前にタグを入力できます。