Delete "Curriculum" tab from LearnPress plugin (wordpress)

1.8k Views Asked by At

is there a way to remove/delete the "Curriculum" tab/section from LearnPress plugin? I can't find a soluction to this problem.

3

There are 3 best solutions below

1
On
add_filter( 'learn-press/course-tabs', 'theme_prefix_lp_course_tab_remove' );

function theme_prefix_lp_course_tab_remove( $tabs ) {
    unset( $tabs['curriculum'] );
    return $tabs;
}
0
On

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
On

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.