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
| .wrapperImgAndParagraph img{ | |
| float: left; | |
| } | |
| .wrapperImgAndParagraph p{ | |
| float: none; | |
| } |
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
| <?php get_template_part('file_name_widhout_extension'); ?> |
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
| <?php | |
| $id_cat_notas_la_plaza = get_category_by_slug( 'notas-la-plaza-de-tu-mascotas' ); | |
| if ( in_category( $id_cat_notas_la_plaza )){ | |
| body_class('single-notas-la-plaza-de-tu-mascotas'); | |
| }else{ | |
| body_class(); | |
| } | |
| ?> | |
| <body <?php get_template_part('file_name_where_the_last_code_was_wrote'); ?> > |
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
| <config> | |
| <modules> | |
| <Topgroup_Vuelta> | |
| <version>1.0.0</version> | |
| </Topgroup_Vuelta> | |
| </modules> | |
| <frontend> | |
| <routers> | |
| <vuelta> |
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
| In phpMyAdmin a 'Search' feature is available: | |
| Select particular database not table. | |
| Click 'Search' tab | |
| Enter the search term you want | |
| Select the tables you want to search in |
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
| <?php echo date_i18n('F'); ?> |
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="addItem"> | |
| <type>skin_js</type> | |
| <name>js/das-una-mano.js</name> | |
| </action> | |
| <action method="addCss"> | |
| <stylesheet>css/carrefour/cms/cms.css</stylesheet> | |
| </action> | |
| </reference> |
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> |
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
| $category = Mage::getResourceModel('catalog/category_collection')->addFieldToFilter('name', 'clothing'); | |
| $cat= $category->getData(); | |
| $categoryid = $cat[0][entity_id]; |
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
| $_helper = $this->helper('catalog/output'); | |
| $_category = Mage::getModel('catalog/category')->load(CATEGORYID);// get your category here. | |
| $_imgHtml = ''; | |
| if ($_imgUrl = $_category->getImageUrl()) { | |
| $_imgHtml = '<p class="category-image"><img src="'.$_imgUrl.'" alt="'.$this->htmlEscape($_category->getName()).'" title="'.$this->htmlEscape($_category->getName()).'" /></p>'; | |
| $_imgHtml = $_helper->categoryAttribute($_category, $_imgHtml, 'image'); | |
| echo $_imgHtml; | |
| } |