Side menu on right on certain pages

Hello everybody! I’m new to Ionic, so this might sound as noobish question, but… I’m using Side nav template in my project. I’ve added a right side menu, and everything works nice. But I need that menu only on certain pages, not on all of them, with different content for each desired page, and I dont know how I can achieve this. Any help is appreciated!

My code right know:

<ion-side-menu side="left">
    <ion-header-bar>
      // Title
    </ion-header-bar>
    <ion-content>
        // Menu list goes here
    </ion-content>
  </ion-side-menu>
  
  <ion-side-menu side="right">
    <ion-header-bar>
      // Title
    </ion-header-bar>
    <ion-content>
        // Menu list goes here
    </ion-content>
  </ion-side-menu>