Home › Forums › Legacy Support › Support queries › How-to & Troubleshooting › Questions of website setting
Tagged: setting
- This topic has 10 replies, 3 voices, and was last updated 5 years, 4 months ago by maximus.
Viewing 11 posts - 1 through 11 (of 11 total)
-
AuthorPosts
-
July 7, 2019 at 2:30 pm #217288wailokccBlocked
- How to remove the numbers of enrolled students of every courses for the entire site at back-end, but NOT via "display:none"?
- How to modify/remove some tabs of profile menu? I can't edit them via LMS general setting (https://snag.gy/TZniw8.jpg).
- 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.
July 8, 2019 at 9:10 am #217386loganMemberHello,- that's not available. it's only possible with custom CSS or you could set a fake no. of counts.
- 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.
- no that's not available in wplms. you can search for third party plugins. for example.
July 8, 2019 at 4:41 pm #217498wailokccBlocked- How can I set a fake number of counts at backend?
- I wanted to remove the "Dashboard, Courses, and Activity" tabs from the Profile Menu. Thank you.
July 9, 2019 at 5:42 am #217545loganMemberSparky !! 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' ); } }July 9, 2019 at 9:45 am #217587wailokccBlockedThank you Logan,- After adding the fake number, would you give me the custom CSS to hide all counts on the entire site?
July 10, 2019 at 6:31 am #217719loganMemberThis reply has been marked as private.July 10, 2019 at 7:38 am #217741wailokccBlockedThis reply has been marked as private.July 11, 2019 at 7:01 am #217893loganMemberThis reply has been marked as private.July 15, 2019 at 9:05 am #218377wailokccBlockedThis reply has been marked as private.July 15, 2019 at 9:09 am #218378wailokccBlockedThis reply has been marked as private.July 16, 2019 at 12:33 pm #218575maximusMember@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 -
AuthorPosts
Viewing 11 posts - 1 through 11 (of 11 total)
- The topic ‘Questions of website setting’ is closed to new replies.