FMCorz / moodle-block_xp

A gamification plugin for Moodle allowing students to gain experience points and level up.
https://levelup.plus/?ref=github
150 stars 41 forks source link

Make experience points count more subtle in the block #72

Closed FMCorz closed 4 years ago

FMCorz commented 6 years ago

I have received a request to be able to:

Those changes were motivated by other users who felt that there was a need for a better emphasis on the experience points gained overall. One of the reasonings was so that students did not feel like they had to start from zero after every level.

I'm inline with the request of being able to hide the total amount of XP. Regarding the progress bar, it is not as straightforward as the number attached to it does not always make sense without some wording to it. I have investigated quite a few designs and this one seemed to be the most understandable for a majority of students.

Before a patch is available, here are two customcss (raw SCSS if in Boost) snippets you can make use of:

Hide the total

.block_xp .xp-total { display: none; }

Dim the XP to go

.block_xp .xp-togo { color: #999; }

/* Optionally, to hide the text "XP to go" */
.block_xp .xp-togo .xp-togo-txt { display: none; }
FMCorz commented 4 years ago

Closing. This is the only time we've heard interest for this feature.