Hide tabs in subPages in RC0

in beta.11 it was given in config but not able to implement in ionic RC0.
please help

I have this exact same problem. Tabs appear on all the pages and breaks the entire app navigation. I think its possible to hide it through CSS but anyone has the code for that?

In the docs

The Config has an option “tabsHideOnSubPages”. Anyone know how to access this config?

i found the solution luckily…we have to give the property inside the IonicModeule.forRoot in app.module.ts

imports: [
    IonicModule.forRoot(MyApp, { tabsHideOnSubPages :true }),
  ],