Okay
  Public Ticket #3597434
Course Levels
Closed

Comments

  • zatakk started the conversation

    Hi 

    I am not using WPLMS Theme. So I dont know how to activate the course levels. Pls suggest

  • [deleted] replied

    add this code in your wplms-customizer.php file in wplms customizer plugin : 


    add_filter('vibe_get_option',function($option,$field,$compare){
        if($field=='level'){
            $option=1;
        }
        return $option;
    },10,3);