คุณสามารถเพิ่มบล็อกใหม่ใน page.xml
<block type="core/text_list" name="before_body_end" as="before_body_end" translate="label">
<block type="page/html_head" name="footerjscss" as="footerjscss" after="-" template="page/html/footerjscss.phtml"/>
</block>
จากนั้นเพิ่มไฟล์ JS & CSS ใน layout.xml ใด ๆ
<reference name="footerjscss">
<action method="addItem"><type>skin_js</type><name>js/slideshow.js</name></action>
<action method="addItem"><type>skin_css</type><name>css/madisonisland.css</name><params/><if/></action>
</reference>
สร้างไฟล์. phtml ในหน้า / html / footerjscss.phtml และเพิ่มรายการต่อไปนี้
<?php echo $this->getCssJsHtml() ?>
ตอนนี้เรียกบล็อกในเทมเพลตหน้า“ 3columns.phtml” และอื่น ๆ คุณจะต้องส่งออกบล็อกนี้ก่อนแท็ก:
<?php echo $this->getChildHtml('before_body_end') ?>
รหัสอ้างอิงที่นี่: http://blog.rahuldadhich.com/magento-load-css-js-footer/