cancel
Showing results for 
Search instead for 
Did you mean: 

move custom options and price to right sidebar

move custom options and price to right sidebar

Hi


Like the topic says. I would like to move the custom options and price to the right sidebar. I know it can be done because I already saw it, but who did it didnt said how to do it. So if you guys can be kind enough and let me know how to make the move?

I'll leave you guys here an example:

http://www.bulkpowders.pt/papa-proteica-completa.html <- This is a magento store


Best Regards to all and thank you in advance

1 REPLY 1

Re: move custom options and price to right sidebar

If you're trying to change aspects of the template affecting how options are displayed and How to move custom options and price to right sidebar


Follow Some steps for custom modification.

 

Step 1 :
Goto app/design/frontend/YOUR_THEME/Template/template/catalog/product/view/type/options/configurable.phtml


Step 2 :

 

Open "configurable.phtml" and Findout This Code
<?php echo $this->getChildHtml('after') ?>
Than After Add this Code
<?php echo $this->getPriceHtml($_product); ?>
<?php echo $this->getChildHtml('bundle_prices') ?>
<?php echo $this->getTierPriceHtml() ?>


Step 3 :
Goto app/design/frontend/YOUR_THEME/Template/template/catalog/product/view.phtml

Step 4 :
Remove This

 

<Div>
<div class="price-info">
<?php echo $this->getPriceHtml($_product); ?>
<?php echo $this->getChildHtml('bundle_prices') ?>
<?php echo $this->getTierPriceHtml() ?>
</div>
Elsner Technologies