Essential Theme: Eliminate the number of courses shown on the icon of the categories

Essential Theme: Eliminate the number of courses shown on the icon of the categories

by Carlos Maroto Belmonte -
Number of replies: 1

Moodle: 2.8.5+

Essential Theme version: 2.8.1.10

Hi, I wonder how I can eliminate the number of courses shown on the icon of the categories in the home of Moodle.


Thank you

Average of ratings: -
In reply to Carlos Maroto Belmonte

Re: Essential Theme: Eliminate the number of courses shown on the icon of the categories

by Marek Kancelarek -

I have this in the custom css field to hide the numbers:


/* numbers */
.numberofcourse,
.categorypicker,
#coursesearch {
display:none;
}

Judging by the classes and ids this may hide some other things too, but I forgot what exactly, so start with just

.numberofcourse, {
display:none;
}
and add the rest if needed.

Depending on your other customizations you may need

display:none !important;

instead.