Questions of website setting

Home Forums Legacy Support Support queries How-to & Troubleshooting Questions of website setting

Tagged: 

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #217288
    wailokcc
    Blocked
    1. How to remove the numbers of enrolled students of every courses for the entire site at back-end, but NOT via "display:none"?
    2. How to modify/remove some tabs of profile menu? I can't edit them via LMS general setting (https://snag.gy/TZniw8.jpg).
    3. How to limit the function of sending private messages (e.g. only allow users to send messages to courses' instructors/students)? Users may receive spams/unwanted messages from strangers if they can send messages to anyone.
    #217386
    logan
    Member
    Hello,
    1. that's not available. it's only possible with custom CSS or you could set a fake no. of counts.
    2. you cant modify them from here. these settings is to rearrange them not to delete them. let us know which tabs do you want to hide.
    3. no that's not available in wplms. you can search for third party plugins. for example.
    https://wordpress.org/plugins/bp-restrict/ https://wordpress.org/plugins/bp-messaging-control/ https://wordpress.org/plugins/buddypress-restrict-messages/
    #217498
    wailokcc
    Blocked
    1. How can I set a fake number of counts at backend?
    2. I wanted to remove the "Dashboard, Courses, and Activity" tabs from the Profile Menu. Thank you.
    #217545
    logan
    Member
    Sparky !! 1) you can show fake no. of students enrolled in a course by going through the course edit in backend and refer this setting http://prntscr.com/mn104f. 2) Please paste this snippets in your wp-admin >> plugins >> editor >> wplms-customizer plugin >> wplms-customizer.php  Or in Please add this code in your wplms-customizer.php file in wplms customizer plugin by using your FTP/SFTP/cpanel: add_action( 'bp_actions', 'shakti_please_remove_profile_tabs', 99999 ); function shakti_please_remove_profile_tabs() { global $bp; if(is_user_logged_in() && (current_user_can('manage_options'))){ bp_core_remove_nav_item( 'activity' ); bp_core_remove_nav_item( 'dashboard' ); bp_core_remove_nav_item( 'course' ); } }
    #217587
    wailokcc
    Blocked
    Thank you Logan,
    1. After adding the fake number, would you give me the custom CSS to hide all counts on the entire site?
    #217719
    logan
    Member
    This reply has been marked as private.
    #217741
    wailokcc
    Blocked
    This reply has been marked as private.
    #217893
    logan
    Member
    This reply has been marked as private.
    #218377
    wailokcc
    Blocked
    This reply has been marked as private.
    #218378
    wailokcc
    Blocked
    This reply has been marked as private.
    #218575
    maximus
    Member
    @wailokcc Yes to hide the instructor name then please goto wp-admin->LMS->Settings->Hide Instructor in whole Site  refer: http://prntscr.com/ofrflf And to hide the number of students to enrolled in course please add this custom css code in wp-admin->Appearance->Customize->Custom CSS .single-course #content .students_undertaking { display:none; } refer: http://prntscr.com/ofrhtl
Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Questions of website setting’ is closed to new replies.