Bạn có thể thêm khối mới trong 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>
sau đó thêm các tệp JS & CSS trong bất kỳ layout.xml nào
<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>
Tạo tập tin .phtml trong trang / html / footerjscss.phtml và thêm vào sau
<?php echo $this->getCssJsHtml() ?>
Bây giờ hãy gọi khối trong mẫu trang Kiểu 3columns.phtml và v.v. bạn sẽ cần xuất khối này trước thẻ:
<?php echo $this->getChildHtml('before_body_end') ?>
Tham khảo mã tại đây: http://blog.rahuldadhich.com/magento-load-css-js-footer/