Last active
September 16, 2017 00:06
-
-
Save pablocattaneo/82c88b67895e51477943 to your computer and use it in GitHub Desktop.
Elimina archivos js y css a una página especifica del cms. El código debe ser agregado en CMS -> Pages -> Manage Content -> Design -> Custom Layout Update XML. Remove js and css files in a specific cms page. The code must be add in CMS -> Pages -> Manage Content -> Design -> Custom Layout Update XML.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <reference name="head"> | |
| <action method="removeItem"> | |
| <type>skin_css</type> | |
| <name>css/frescos.css</name> | |
| </action> | |
| <!-- Evita que se cargue el recurso de la carpeta js que se carga en el theme que está activado --> | |
| <action method="removeItem"> | |
| <type>skin_js</type> | |
| <name>js/lib/bxslider/config_pft.js</name> | |
| </action> | |
| <!-- Evita que se cargue que se cargue el recurso de la carpeta /js/carrefour/ --> | |
| <action method="removeItem"> | |
| <type>js</type> | |
| <script>carrefour/selectDependency.js</script> | |
| </action> | |
| </reference> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment