Hidding side menu and nav bar in only 1 page

hi, when i make hide-nav-bar=“true” it also makes my sidebar menu disappear in the other pages. all i got left is the nav bar and a back arrow. how can i fix this?

<ion-view title="Home" id="page1">
    <ion-content padding="true" class="has-header"></ion-content>
</ion-view>

Can you get more detail information about or better link to Codepen for issue.

In general you can set hide-nav-bar=“false” on a top parent controller and hide-nav-bar=“true” in your 1 page.
Also check $ionicNavBarDelegate.

Yes. I have a home page that i dont want the side menu and nav bar to appear. so i put it to hide-nav-bar=“true”, which works and makes both go away. the problem is that in the other pages when i do this in home my side menu goes away and is replaced by a back arrow.
this is my code:
>

<ion-content padding="true" class="has-header backg">
 <img class="log" src='../../img/image2.png' alt="HTML5 Icon" style="width:90px;height:90px;">
   </ion-content>
</ion-view>

and this is what happens to the other pages:
image

and this is how it should looklike in the other pages except for the home one:
image

Maybe this is a navigation problem. Can you put a codepen for this?