Deeplinks and ion-tabs

Hi, I have a tab based project.

I’m trying to use deeplinks to open myapp://path in a specific tab in the app.
It opens the correct “view” but the tabs are not showing up so my navigation isn’t working anymore.

I’ve tried with no luck to force them with a method that works in other pages of the app (where I want to hide and show the tabs dynamically):

let tabs = document.querySelectorAll('.tabbar');
        if (tabs !== null) {
            Object.keys(tabs).map((key) => {
                tabs[key].style.transform = 'translateY(0px)';
            });
        }

Ionic info:

Cordova CLI: 6.5.0 
Ionic Framework Version: 3.3.0
Ionic CLI Version: 2.2.1
Ionic App Lib Version: 2.2.0
Ionic App Scripts Version: 1.3.7
ios-deploy version: 1.9.0 
ios-sim version: 5.0.12 
OS: macOS Sierra
Node Version: v6.0.0
Xcode version: Xcode 8.3.2 Build version 8E2002

Any idea to make it work?