Disable course package and category creation

Home Forums Legacy Support Support queries How-to & Troubleshooting Disable course package and category creation

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #147279
    ecuagliarella
    Participant
    Hello, I want to disable course package selection pop up and go to course creation directly: https://prnt.sc/ihlrii Also, I want to disable category creation as I want instructors to use the already existing categories: https://prnt.sc/ihlrqk Thanks beforehand!
    #147350
    Anshuman Sahu
    Keymaster
    Hi, To disable course package please paste the following css in wp-admin>appearance>customize>custom css #upload_course{display:none;} .fa-times {margin-right:550px;} Refer : http://prntscr.com/ihrjns   To disable course category for instructors please paste the following code in wp-admin>plugin>editor>wplms customizer plugin   add_filter('wplms_course_creation_tabs',function($settings){ foreach ($settings as $key => $value) { if($value['id'] == 'course-cat''){ unset($settings[$key]); break; } } return $settings; },9999);
    #147515
    ecuagliarella
    Participant
    Hello, How can I remove the "Create your own Course" button and go directly to the course creation page?
    #147523
    ecuagliarella
    Participant
    Also, I've pasted the code on the customizer plugin but create a category option keeps appearing https://prnt.sc/ihlrqk I've already changed 'course-cat'' to 'course-cat' and tried deactivatind and activating the plugin.
    #147644
    H.K. Latiyan
    Participant
    Hi, Adding the below css in your appearance->customize->custom css: div#create_course_templates_wrapper {display:none;} This will remove the create course template. Try adding the below css to remove the add new category: select#course-cat-select option[value="new"],input#new_course_cat {display:none !important;}
    #147705
    ecuagliarella
    Participant
    This reply has been marked as private.
    #147803
    H.K. Latiyan
    Participant
    This reply has been marked as private.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Disable course package and category creation’ is closed to new replies.