Removing the '' Administrator '' of the instructors?

Home Forums Legacy Support Support queries Other issues Removing the '' Administrator '' of the instructors?

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #11273
    PHAlves
    Spectator
    Hello, I would like to remove the ''Administrator'' only of the instructors in the course description. Follows attached.  
    #11413
    sandy
    Member
    This is only visible to Administrator or course instructor. You can hide it via css but 80% of the instructor activities/functions are being managed by this link.
    #11414
    PHAlves
    Spectator
    Could you tell me please CSS code? Tks
    #11549
    Anshuman Sahu
    Keymaster
    Add the given code from wplms-customizer.php file in wplms customizer plugin . add_action ('wp_footer','custom_hide_admin');  function custom_hide_admin(){ if(!current_user_can('manage_options')) echo ' li#admin {display: none !important;} '; }  
    #11688
    PHAlves
    Spectator
    Hi, this code does not work, =/
    #11811
    Anshuman Sahu
    Keymaster
    Sorry for the mistake please try this one : add_action ('wp_footer','custom_hide_admin');  function custom_hide_admin(){ if(!current_user_can('manage_options')) echo ' <style>li#admin {display: none !important;}</style> ';   }
    #11874
    PHAlves
    Spectator
    Great, Many Thanks
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Removing the '' Administrator '' of the instructors?’ is closed to new replies.