Need assistance with "tags"

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tradingvip
    New Member
    • Jul 2015
    • 27
    • 5.1.x

    Need assistance with "tags"

    Hi guys, is there any ways to hide the Tags: None
    That appears in each topic created? Thanks and regards
  • Mark.B
    vBulletin Support
    • Feb 2004
    • 24288
    • 6.0.X

    #2
    You could potentially hide it with some custom css, but if you do that, then any tags that do exist won't show either. Is that what you want?

    If you want it to only hide when there are no tags, that would require custom coding, for which vbulletin.org is the best place to ask for help.
    Last edited by Mark.B; Fri 17 Jul '15, 11:54pm.
    MARK.B
    vBulletin Support
    ------------
    My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
    My Unofficial vBulletin Cloud Demo: https://www.adminammo.com

    Comment

    • tradingvip
      New Member
      • Jul 2015
      • 27
      • 5.1.x

      #3
      Originally posted by Mark.B
      You coulod potentially hide it with some custom css, but if you do that, then any tags that do exist won't show either. Is that what you want?

      If you want it to only hide when there are no tags, that would require custom coding, for which vbulletin.org is the best place to ask for help.
      Hi Mark. Yes I want to do the first option, hiding it at all.

      Comment

      • Mark.B
        vBulletin Support
        • Feb 2004
        • 24288
        • 6.0.X

        #4
        Looking at the code, I don't think this is going to be possible, since the css class it uses has the nodeid appended to it...you can't therefore write a piece of css that will cover it.
        MARK.B
        vBulletin Support
        ------------
        My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
        My Unofficial vBulletin Cloud Demo: https://www.adminammo.com

        Comment

        • glennrocksvb
          Former vBulletin Developer
          • Mar 2011
          • 4021
          • 5.7.X

          #5
          Originally posted by Mark.B
          Looking at the code, I don't think this is going to be possible, since the css class it uses has the nodeid appended to it...you can't therefore write a piece of css that will cover it.
          You can using attribute selector.

          Code:
          div[id^="content-tags-"] { display: none; }
          There's also another way (though the first one is the safer and better solution)

          Code:
          .b-post--first .b-post__footer .h-clearfix > div { display: none; }
          Last edited by glennrocksvb; Mon 20 Jul '15, 11:52am.

          Flag Icon Postbit Insert GIPHY Impersonate User BETTER INITIALS AVATAR Better Name Card Quote Selected Text Bookmark Posts Post Footer Translate Stop Links in Posts +MORE!

          Comment

          Related Topics

          Collapse

          Working...