Home › Forums › Legacy Support › Support queries › Other issues › Hide button Student and show Instructor
Tagged: Hide button
- This topic has 7 replies, 2 voices, and was last updated 3 years, 6 months ago by Ada.
Viewing 8 posts - 1 through 8 (of 8 total)
-
AuthorPosts
-
April 26, 2021 at 4:10 am #354461MediaeffectiveParticipantHi, can you help me hide a button? the idea is that when a student enters he cannot see the button but when an instructor enters the course, she can access that button. https://prnt.sc/122lya0April 26, 2021 at 5:43 am #354495AdaParticipantHi, Please share this course URL and your admin credential for the site here in private reply. Then only I can check and share the code if possible.April 28, 2021 at 7:35 pm #355032MediaeffectiveParticipantThis reply has been marked as private.April 29, 2021 at 8:17 am #355128AdaParticipantHi, I'm not sure what you are saying in your last reply but as per your first post on this topic if you want to hide this button for students then Please try adding this given code in wplms-customizer.php
You can download wplms customizer plugin from here https://wplms.io/support/knowledge-base/wplms-customizer-plugin/ install the plugin and activate it. Then goto plugin editor >>wplms-customizer.php and add the code in the last Then share if it hides this button https://prntscr.com/128pjjffunction hide_button_for_student() { $user = wp_get_current_user(); if ( !current_user_can('edit_posts') ) { //The user has the "student" role ?> <style> .page-id-163 .elementor-element.elementor-element-4c6f5a9.btnteacher.elementor-widget.elementor-widget-button { display:none !important; } </style> <?php }} add_action('wp_head', 'hide_button_for_student');
April 30, 2021 at 5:51 pm #355430MediaeffectiveParticipantthanks for helpingMay 1, 2021 at 3:49 am #355465AdaParticipantHi, Please confirm, Can I close this topic ?May 17, 2021 at 6:59 am #357683MediaeffectiveParticipantthank you, you can close this topicMay 17, 2021 at 11:05 am #357747AdaParticipantClosing . -
AuthorPosts
Viewing 8 posts - 1 through 8 (of 8 total)
- The topic ‘Hide button Student and show Instructor’ is closed to new replies.