Articles for May, 2009

mini-search box

lsd Comments Off / Filed under Magentonary

Magento mini-search box By default, mini-search box is placed in the header section. To change mini-search box’s placement to left or right column, simply change <reference name="header"> to <reference name="left"> (or “right”) in catalogsearch.xml <reference name="header"> <block type="core/template" name="top.search" as="topSearch" template="catalogsearch/form.mini.phtml"/> </reference> To place the mini-search box above everything on the left column, simply add [...]

Magento SKU

lsd Comments Off / Filed under Magentonary

SKU, Stock-keeping unit. By default, not show on front-end. Appear in Sales Order and Invoice. To make it show on product page (view.phtml) or product listing page (list.phtml), insert this code : <?php echo $this->htmlEscape($_product->getSku()) ?>

Flat Catalog

lsd Comments Off / Filed under Magentonary

Introduced in v1.3, come with two features, one is Flat Catalog Product and the other Flat Catalog Category. Known Function: Improve performance for site that has over 1000 products. Possible known symptoms: break thrid-party extension, cause error in custom options. Best information we found on Front Calalog is from this thread by Gabriel Queiroz.