how to change product view page to one column layout
To change product view page to 1 column layout you need to open
app/design/frontend/default/default/layout/catalog.xml
Reach to following Code :
<catalog_product_view translate="label">
<label>Catalog Product View (Any)</label>
<!-- Mage_Catalog -->
<reference name="root">
<action method="setTemplate"><template>page/2columns-right.phtml</template>
</action>
</reference>
Here you can change 2columns-right.phtml to 1column.phtml.
We can also use local.xml(better way) and the following code need to be added -
<catalog_product_view>
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
</catalog_product_view>
Hope it'd be helpful.
Thanks!
I would not recommend any of those answers!
Your magento is going to break with any update!
The only good answer when you need to update any xml layout is to edit the file local.xml located in app/design/frontend/youtheme/default/layout
Simply add
<catalog_product_view translate="label">
<label>Catalog Product View (Any)</label>
<!-- Mage_Catalog -->
<reference name="root">
<action method="setTemplate"><template>page/2columns-left.phtml</template>
</action>
</reference>
</catalog_product_view>
And you're done... easy and clean.
All of the above answers are not The Magento Way.
In your local.xml file for your theme add:
<catalog_product_view>
<reference name="root">
<action method="setTemplate"><template>page/1column.phtml</template></action>
</reference>
</catalog_product_view>