How to remove Activity title from activity page for Card layout of Edwiser Course format
Add the CSS mentioned below in Edwiser RemUI settings > General section > Custom CSS section:
For Moodle 4.0 and above:
body#page-course-view-remuiformat .activity .activitytitle .media-body>:first-child
{
display: none;
}
For Moodle 3.11 and below:
.wdm-mod-name {
display: none !important;
}
Before applying CSS
After applying CSS
P