Thread Starter
Kaan
(@kaanoran)
When a user clicks, they are directed to freelancerokulu.com/courses
I don’t want the users to see this page. It also works for me if I can deactivate that button.
Hello @kaanoran
Paste this code on wp-admin > appearance > customize > additional css
.tutor-submenu-login-section-instructor {
display: none;
}
Thread Starter
Kaan
(@kaanoran)
Thanks for the reply.
I need for the student page. This is for instructor page.
I solved the issue by removing the button with the code below (in case anyone need it) but still would be great if you could tell me the code for student page too.
Thanks.
The code I used to remove the button:
.tutor-submenu-login-btn {
display: none;
width: 0;
margin: 0;
padding: 0;
}
Hello @kaanoran,
Courses page is an archive page which is rendered from the following file
wp-content/plugins/tutor/templates/archive-course.php
You can open this file with a text editor and comment out lines from 16 to 26