is there a way to remove/delete the "Curriculum" tab/section from LearnPress plugin? I can't find a soluction to this problem.
Delete "Curriculum" tab from LearnPress plugin (wordpress)
1.8k Views Asked by DarkPassenger At
3
There are 3 best solutions below
0

You can hide course tab from customize>courses>single Course>sortable tabs>eye icon. Below is the screenshot- https://i.stack.imgur.com/GMWLS.png
0

Unfortunately the add_filter function mentioned in a previous answer does not work (with this version 4.2.2.2 and probably other versions) on course page (for info, this is the page name of the course: content-single-course.php)
The only setup I would suggest is to play with CSS:
li:has(> a[href^="#course-instructor"] ) {display: none;}
li:has(> a[href^="#course-review-rating"] ) {display: none;}
This CSS snippet does not prevent from showing the elements again if you play with inspecting the code.