Magento – How to call customer account sidebar on custom magento extension

ce-1.7.0.2

I am developing a magento extension in which i need to call the customer account side bar in the left section on my extension template i have tried adding it to my extension layout xml but with no luck :'( any body had any previous experience with this please share.

Note : I am using Magento ver. 1.7.0.2

Best Answer

You can tell your layout handle to use the customer_account handle

<custom_layout_handle>
    <update handle="customer_account"/>
    <!-- additional statements here --> 
</custom_layout_handle>
Related Topic