0

I have created custom page and added that link to my account page. But if I click on that link side bar disappears. How can I show my account navigation sidebar in my custom module page?

Palanikumar
  • 1,706
  • 5
  • 28
  • 51

1 Answers1

1

use update handle e.g.

<layout>
<cevent_index_index>    --- your custom module handle in layout.xml
    <update handle="customer_account"/>  -- check customer.xml
    <reference name="my.account.wrapper">   ---- block in customer_account handle
        <block type="cevent/cevent" name="cevent" template="cevent/cevent.phtml"/>
    </reference>    
</cevent_index_index>
</layout>
Ricky Sharma
  • 1,839
  • 3
  • 24
  • 44