Hide unit video

Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #366428
    Veronica
    Moderator
    confirm are you want to hide that only for instructor or for all?
    #366510
    MrVibe
    Keymaster
    Try this code
    add_filter('wplms_course_creation_tabs',function($tabs){
    
    unset($tabs['course_curriculum']['fields']['curriculum_elements'][2]['types'][1]);
    return $tabs;
    });
    #367046
    silverchair
    Spectator
    I want to hide Dynamic Quiz for any user. I've tried the provided code by @Mr.Vibe and it's not works, refer: https://prnt.sc/1ipwzi4
    #367158
    Anshuman Sahu
    Keymaster
    this one is working tried and tested :
    add_filter('wplms_course_creation_tabs',function($tabs){
    array_splice($tabs['course_curriculum']['fields'][0]['curriculum_elements'][2]['types'], 1,1);
    
    return $tabs;
    },9999);
Viewing 4 posts - 16 through 19 (of 19 total)
  • The topic ‘Hide unit video’ is closed to new replies.