Related product in view page in magento
Remove this line of
code from catalog.xml
app/design/frontend/default/Your
theme/layout/catalog.xml
<reference
name="right">
<block
type="catalog/product_list_related"
name="catalog.product.related" before="-"
template="catalog/product/list/related.phtml"/>
</reference>
and add below line of
code above the upsell xml bloxk in catalog.xml
<block
type="catalog/product_list_related"
name="catalog.product.related" as="related_products"
before="-" template="catalog/product/list/related.phtml"/>
add this line of cade
in view.phtml above upsell block:-
app/design/frontend/default/Your
theme/template/catalog/product/view.phtml
<?php echo
$this->getChildHtml('related_products') ?>
No comments:
Post a Comment