How to remove js/jqzoom/jquery-1.3.1.min.js script in Magento Enterprise?
Can't remove js/jqzoom/jquery-1.3.1.min.js script in Magento EE 1.10.1.1 version. This script is being added in app/design/frontend/enterprise/default/layout/catalog.xml (around line 196).
Here is the code in my local.xml layout file:
<catalog_product_view>
<action method="removeItem"><type>skin_js</type><name>js/jqzoom/jquery-1.3.1.min.js</name></action>
</catalog_product_view>
How can I r开发者_C百科emove this script without modifying core layout file? Thanks.
Try this:
<catalog_product_view>
<reference name="head">
<action method="removeItem"><type>skin_js</type><name>js/jqzoom/jquery-1.3.1.min.js</name></action>
</reference>
</catalog_product_view>
精彩评论