HELP! cannot hide quick action bar from a page :(

Hello knowledgeable people!

I seem to have a code problem, as i have a quick action bar active at my site, but I want to remove it from one page, so I put in the code in the attached pic… and… nothing happens…

Please! am i doing something wrong?

thanx so much!

A long while since this was posted, but it seems that hide method doesn’t work for this object… However, collapse does work, so you could have:

$w('#quickActionBar1').collapse()
2 Likes

https://www.wix.com/corvid/reference/$w.QuickActionBar.html
You can do show and hide or expand and collapse.

Although, remember that the Quick Action Bar from Wix is a mobile tool.
https://support.wix.com/en/article/adding-and-setting-up-the-quick-action-bar-on-your-mobile-site

So any code that you write for it will have to be for mobile only.
https://www.wix.com/corvid/reference/wix-window.html#formFactor
https://support.wix.com/en/article/corvid-writing-code-that-only-runs-on-mobile-devices
https://support.wix.com/en/article/corvid-tutorial-displaying-elements-in-mobile-only

thanks for that… but (for me) $w(‘#quickActionBar1’).hide() just doesn’t do anything, but $w(‘#quickActionBar1’).collapse() does work fine… Anyway I’m happy to use collapse, so no worries.

Well, hiding doesn’t seem to work.

I’ve done the same thing but with animation.
Result: hiding animation is played, the bar hides for 1ms, and then pops back as if it was never been asked to hide…

Thank you for the collapse tip! :slight_smile:

Same issue. What’s the solution to hide the action bar from a specific section or specific page in mobile?

code $w ( ‘#quickActionBar1’ ). hide () solved the issue for me

This really helped and it works so perfect.