local.xml 1.72 KB
Newer Older
John Punzalan's avatar
John Punzalan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
<?xml version="1.0"?>

<layout version="0.1.0">

	<!-- Default handle, loaded on most pages -->
	<default>

		<reference name="head">

			<!-- Remove Magento's default assets -->
			<action method="removeItem">
				<type>skin_css</type>
				<name>css/print.css</name>
			</action>
			<action method="removeItem">
				<type>skin_css</type>
				<name>css/styles-ie.css</name>
			</action>
			<action method="removeItem">
				<type>skin_css</type>
				<name>css/styles.css</name>
			</action>
			<action method="removeItem">
				<type>skin_css</type>
				<name>css/widgets.css</name>
			</action>
			<action method="removeItem">
				<type>skin_js</type>
				<name>js/ie6.js</name>
			</action>
			<action method="removeItem">
				<type>js</type>
				<name>lib/ds-sleight.js</name>
			</action>
			<action method="removeItem">
				<type>js</type>
				<name>varien/menu.js</name>
			</action>

            <action method="addCss">
                <stylesheet>css/style.css</stylesheet>
            </action>
			<action method="addItem">
				<type>skin_js</type>
				<name>js/script-ck.js</name>
			</action>
John Punzalan's avatar
John Punzalan committed
47 48 49 50 51 52 53 54
			<action method="addItem">
				<type>skin_js</type>
				<name>js/slick.js</name>
			</action>
			<action method="addItem">
				<type>skin_js</type>
				<name>js/javascript.js</name>
			</action>
John Punzalan's avatar
John Punzalan committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

		</reference>

        <reference name="header">
            <block type="directory/currency" name="custom_currency_selector" template="currency/currency.phtml"/>
        </reference>
	</default>

	<print>

		<reference name="head">

			<action method="addItem">
				<type>skin_js</type>
				<name>js/script-ck.js</name>
			</action>

		</reference>

	</print>

76 77 78 79
	<checkout_cart_index>
		<remove name="checkout.cart.shipping" />
	</checkout_cart_index>

John Punzalan's avatar
John Punzalan committed
80
</layout>