CSS to hide Resume button on the Course Progress block while using Card Course format
Add this CSS to remove the Resume button on the Course Progress block while using Card Course format. You need to add the following CSS in Edwiser RemUI settings > General settings > Custom CSS section
For Moodle 4.0 and above:
.header-sub-section .progress-resume-wrapper .btn-block {
display: none;
}
For Moodle 3.11 and below
.general-section-card-details .coursedetails div.text-center {
display: none;
}