Is there a way to hide the Course Code and the Learning Plan Code in My Activities? The learners don’t need to see those titles, they only need to see the Course Name and Learning Plan Name.
Is there a way to hide the Course Code and the Learning Plan Code in My Activities? The learners don’t need to see those titles, they only need to see the Course Name and Learning Plan Name.
It also gives more space to more important text fields
Good evening to you.
Have you tried to impact it via CSS? I know you can impact the left hand menu and make entire items disappear.
/* Learner activities page courses Hide the first, fifth, and seventh columns in the table */
#course-management-grid td:nth-child(1),
#course-management-grid td:nth-child(5),
#course-management-grid td:nth-child(7) {
display: none;
}
/* Learner activities page coursesHide the corresponding header cells */
#course-management-grid_c0,
#course-management-grid_c4,
#course-management-grid_c6 {
display: none;
}
/* Learner activities page certifications Hide the second and third columns in the table */
#activities-certifications-grid_c1,
#activities-certifications-grid_c2,
#activities-certifications-grid td:nth-child(2),
#activities-certifications-grid td:nth-child(3) {
display: none;
}
The above code seems to work better, this targets both the learners activity (courses ) and (Certifications) adapt Nth child as desired.
Hiya,
Yes the code above is still working on my platform. What is happening? Are you noticing any changes?
/** This will hide the Expiration Date Header **/
#course-management-grid_c4 {
display: none;
}
/** This will hide the cells under the Expiration Date Header **/
#course-management-grid > div.gridItemsContainer > table > tbody > tr > td:nth-child(5) {
display: none;
}
As evidenced here - the code column is hidden and it starts with course name:
However, we wanted to also hide this same column on the actual My Activities page and so when I saw this original post, I applied the code listed above that reference the My Activities page but it simply is still showing for us:
I can’t figure out if I’m doing something wrong in copying/pasting the code or why it isn’t working for our platform. That’s the only column we want to hide for now so if you have any other suggestions, I would greatly appreciate the help!
Hi so if I understand correctly on the learner my activities page shown below, I have removed my code that hides the course code. On the learners my activities page - courses.
After I apply the following code -
/* Learner activities page courses Hide the corresponding header cells */
#course-management-grid_c0,
#course-management-grid_c4,
#course-management-grid_c6 {
display: none;
}
/* Learner activities page certifications
Hide the second and third columns in the table */
#activities-certifications-grid_c1,
#activities-certifications-grid_c2,
#activities-certifications-grid td:nth-child(2),
#activities-certifications-grid td:nth-child(3) {
display: none;
}
This is the result that I get. You may want to add or remove activities-certifications-grid td:nth-child(3) for example change the 3 to 6 and this will change the table. However if you are looking for the below, above is working for this page.
Let me know if I am on the right lines for you.
Enter your email address or username and password below to log in to Docebo Community. No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.