Best Answer

Badging - Is it possible to hide the point value?

  • 21 July 2022
  • 5 replies
  • 139 views

Userlevel 3
Badge +1

Good day Community!
I was curious to know if anyone had come up with code that could hide the point value that appears on badge ribbons. There's some concern in my organization that even if we set the point value to 0 for each badge we create (as we're going for a less competitive approach to badging), users will find it odd to see a line of 0s across their awarded badges. 

Any insight would be appreciated. Thank you!

icon

Best answer by gstager 21 July 2022, 20:18

View original

5 replies

Userlevel 7
Badge +5

 

 

 

There  are a few considerations here.

Do you want to hide just the text and keep the ribbon? Remove both?
There are two different areas - widget and legacy gamification page.

I will post some codes and you can mix/match them how you wish.

I believe these will cover it but please test for conflicts and let me know if there are any other remaining aspects to remove.

/** Removes the score only from the black flag on widget **/

.badge-score {
display: none !important;
}

/** Removes the score only from the black flag on gamification page **/

.flag_text {
display: none !important;
}

/** Removes the black flag on gamification page **/

img.flag {
display: none;
}

/** Removes the black flag on widget **/

.list-badges-content > li::before {
display: none;
}

Hope this helps!

Userlevel 3
Badge +1

It’s helpful indeed. Many thanks @gstager!

Userlevel 6
Badge +2

Love this post, and thank you @gstager again for your wisdom.  I went one step further and took off the badge counter too.  So much cleaner and uncluttered!

.badge_counter {display: none !important;}

 

 

Userlevel 3
Badge +1

Many thanks for the addition @Neil Patterson. This gives me quite a well-rounded set of solutions to present to my stakeholders. 😃

Userlevel 3
Badge

Is there a way to get rid of the badge counter in widgets as well?  Check this out:  It is gone from the gamification page, but not from widgets that show badges:  (see the greyed-out part on the left of the screen, vs. the gamification on the right)

 

 

Reply