Magento – Move related products to Right Column on product page Magento 1.9.0.1

magento-1.8productproduct-listproducts-management

In Magento 1.9.0.1, on product page "Related Products" appear just under the products description. I want to move this block to Right Column.

Please advise how to do this?

Best Answer

Two steps:

  1. At app/design/frontend/rwd/default/layout/catalog.xml. Move following code:

to

    <reference name="right">

    </reference>
</catalog_product_view>,

and make it looks like below:

    <reference name="right">
            <block type="catalog/product_list_related" name="catalog.product.related" as="related_products" template="catalog/product/list/related.phtml" />
    </reference>
</catalog_product_view>
  1. At the page app/design/frontend/rwd/default/template/catalog/product/view.phtml, remove following:

        <?php echo $this->getChildHtml('related_products') ?>