How to hide activity type in Moodle 4.0

How to hide activity type in Moodle 4.0

дэргэд Prush Sa-nga-ngam -
Хариу нийтлэлийн тоо: 21

I'm trying Moodle 4.0. How to hide or remove activity type and show only icon and activity name. Thank you.

Activities type shows

Үнэлгээний дундаж:Useful (2)
Prush Sa-nga-ngam-н хариуд

Re: How to hide activity type in Moodle 4.0

дэргэд Dominique Palumbo -
Particularly helpful Moodlers зураг Plugin developers зураг
Hi,

you can add these lines in Additional HTML (additionalhtmlfooter)
<script>
    $(".activityname").prev().css('display', 'none');
</script>
Dominique Palumbo-н хариуд

ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Prush Sa-nga-ngam -
Thank you Dominique. I have added the script that but It's not working. Any other setting needed?
Prush Sa-nga-ngam-н хариуд

Re: ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Randy Thornton -
Documentation writers зураг
Prush

You can use this css to do that:

.activitytitle .text-uppercase { display: none; }

This new element is called the "activitytitle". CSS for this and some variants of it is already posted over this discussion in the Themes forum, thanks to Bob Gilmore. That discussion has a lot of other fixes too.
Randy Thornton-н хариуд

ตอบ: Re: ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Prush Sa-nga-ngam -

Many thanks, Randy. I am relatively new to CSS and am beginning to learn it.

Prush Sa-nga-ngam-н хариуд

Re: ตอบ: Re: ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Dominique Palumbo -
Particularly helpful Moodlers зураг Plugin developers зураг
Hi,

the Randy solution is far better. I've missed the class .ctivitytitle...
when you add the css you've to put it between the tag style

<style>
....
</style>
Dominique Palumbo-н хариуд

Re: ตอบ: Re: ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Randy Thornton -
Documentation writers зураг
You can also put this in the css area for a theme as well. For the default theme Boost, you can put this in Site admin > Appearance > Themes > Boost > Advanced settings > Raw SCSS.

As general rule, if I only need pure css / scss in a theme, I put it there in the Raw SCSS box. If I need some actual html, I put it in Additional HTML. But that's just how I do it: do whatever works for you инээмсэглэл

Most third party themes have such a css box, though it may have a different name, such as "Custom CSS" etc. if you have several themes on the site, and want the change to apply to all the themes, you can put it in Additional HTML too since it affects all the pages. That does not mean any particular css will work properly in every theme, however, since some themes change how some css selectors work, but if it does, it can save you work since there is only one place to have to change things.
Randy Thornton-н хариуд

Re: ตอบ: Re: ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Rick Jerz -
Particularly helpful Moodlers зураг Testers зураг
This supports, visually, what Rand has said.

Хавсралт Remove_Text1.png
Rick Jerz-н хариуд

ตอบ: Re: ตอบ: Re: ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Prush Sa-nga-ngam -
Thank you Rick. I noticed other customize. Could you please suggest further readings.
Randy Thornton-н хариуд

Re: ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Anthony M -
Thanks a lot Randy!

That worked to remove the "activitytitle" from the course main page.

Anyone know to to also target the activity page? (once the user click to enter the activity)...





Thanks!
Anthony M-н хариуд

Re: ตอบ: Re: How to hide activity type in Moodle 4.0

дэргэд Aleksandr Potapov -

Add to CSS:

div .text-muted.text-uppercase.small.line-height-3 { display: none; }


Prush Sa-nga-ngam-н хариуд

Re: How to hide activity type in Moodle 4.0

дэргэд Howard Miller -
Core developers зураг Documentation writers зураг Particularly helpful Moodlers зураг Peer reviewers зураг Plugin developers зураг
Howard Miller-н хариуд

Re: How to hide activity type in Moodle 4.0

дэргэд Ken Task -
Particularly helpful Moodlers зураг

Voted!   Can I get more votes!   I'd like to do at least 20! инээмсэглэл

Always wanted to ask ... sooo ... what's the threshold ... how many votes does it take to 'get whatever done'?

'SoS', Ken

Ken Task-н хариуд

Re: How to hide activity type in Moodle 4.0

дэргэд Visvanath Ratnaweera -
Particularly helpful Moodlers зураг Translators зураг
What a blunder!

I added the first comment to MDL-75204. Tried my best to keep a polite tone. It was difficult, believe me!
Visvanath Ratnaweera-н хариуд

Re: How to hide activity type in Moodle 4.0

дэргэд Howard Miller -
Core developers зураг Documentation writers зураг Particularly helpful Moodlers зураг Peer reviewers зураг Plugin developers зураг