0

Is there a way to hide the UserVoice tab?

Inspecting the UserVoice object in firebug I see the functions

hidePopupWidget()
showPopupWidget()
showTab()

but no hideTab()

I would like to programmatically control the show and hide of the tab.

fortuneRice
  • 4,214
  • 11
  • 43
  • 58

2 Answers2

1

You can just click 'edit widget' on UserVoice page and choose 'use my own link' After a few minutes the tab will disappear on the site.

Jimchao
  • 1,468
  • 1
  • 12
  • 18
0

I ended up just setting tab element to css display:none; e.g. $("#uvTab").hide();

fortuneRice
  • 4,214
  • 11
  • 43
  • 58