Magento – View products without product image / Hide

New products have arrived and are set directly in the Magento Store. The setting of the photos but unfortunately takes a little. Well this article should not be displayed by default on the product pages until they have a picture. Of course, there is the possibility to adjust the product itself, that it is not visible or that it is disabled…

Magento – Removal of the navigation pages in a category via XML

Who on in a special category page navigation (“See X per page”, “Sort by”, “View as”, “X Articles”) want to miss, this can really about the “remove” Command in your own design or. “Custom Layout Update” of each category with the command:   <remove name=”product_list_toolbar”/>   be done. This works but unfortunately not. The reason for that…

Magento – “Back” Link to Article in Category Details

You want rel. easily have a link back from the product view to the category overview, this can be made as follows. In the view.phtml folder app / design /[base or default]/[IhrTemplate]/catalog / product / The following code is inserted: <?php if ($_category = $_product->getCategory()): ?> <div class =”back-link”> <a href=”<?php echo $_category->getUrl(); ?>” class =”form-button-alt” ><?php echo $this->__(‘Back’) ?></a> </div> <?php endif;?> I…

Magento – Category Home

Wants to use it as a category in Magento Homepage, this can be relatively simple code on the line {{block type=”catalog/product_list” category_id=”[Your category ID]” template =”catalog/product/list.phtml”}} be made. This simply insert the contents of the CMS home page these stores (Important: Take care, that the WYSIWYG editor is not enabled!), save, CMS system under natural

Magento – HTML Tags / Code in the shop in the list view / Category / Short Description

Who has the problem, that the front end HTML tags for Description / Short Description will angzeigt, when changing from the grid view to list view, fix it, by the list.phtml a small change is made: The list.phtml file in the folder / app / design / frontend /[base or default]/IhrTemplate / template / catalog / product open after the spot <?php echo nl2br($this->htmlEscape($_product->getShortDescription())) ?> search…