Hide Components / Elements

Home Forums Legacy Support Support queries Setup issues Hide Components / Elements

Viewing 15 posts - 1 through 15 (of 61 total)
  • Author
    Posts
  • #245001
    ayanfe4favour
    Participant
    I want to set the follow to default and hide to reduce the clumsiness at the front-end https://prnt.sc/rddh42 https://prnt.sc/rddjmc https://prnt.sc/rddlkk How can I disable “Save Template” button that display when publishing a Course? https://prnt.sc/rddqu5 Is there alternative Plugin that can be used to prepare Math question instead of JetPack? https://prnt.sc/rddvby https://prnt.sc/rddx2w Is it possible to time student when taking this Lecture? If it is possible, please, how?

    Please note: I have tried to hide some in “Course Navigation -> Front End Course Creation” but all the items listed in the screenshot above are not present there.

    Also, I have been trying to create a special user that will be able to View/Edit all the Courses created by all the instructors at the front-end for quality assurance and monitoring purpose.... Code had been sent to me and pasted at the instructed location.. But it is still not working, I have been asked to Provide my Admin login details... But the person who later replied did not reply inline with the person that has been attending to me.... I will be sending the admin login immediately I post this now The time I spent composing questions without getting adequate solution is disturbing. Sometimes, some issues will be solved, some will be left unsolved, while sometimes ambiguous solutions is provided...
    #245002
    ayanfe4favour
    Participant
    This reply has been marked as private.
    #245066
    Veronica
    Moderator
    Please note: I have tried to hide some in “Course Navigation -> Front End Course Creation” but all the items listed in the screenshot above are not present there. have you tried this with the instructor account? if "no" then please try. some of them can be hidden by custom codes using the filters but not all of them. and for the question type options, we can hide it by using custom css.
    if you log in then after that you will the edit option on the all-courses page.
    you can also use latex plugin for math type question.
    please revert for further query and process.
    #245068
    ayanfe4favour
    Participant
    Please, help me provide accurate answer to the questions... I have tried it with Instructor account. It just gave me the normal instructor Dashboard.. "some of them can be hidden by custom codes using the filters but not all of them." Can you please guild me on how to do it "and for the question type options, we can hide it by using custom css." Can you please send the "custom css" and where to paste it "if you log in then after that you will the edit option on the all-courses page." I only saw normal Dashboard for Instructor when I logged in... "you can also use latex plugin for math type question." I have tried to use this but I could not get it. Moreover, it looks so complex for me. I plan to use it for Live Tutorial, where student can send question and the instructor can reply immediately.... How can I teach student/instructor to wrap every question or special character. For how long?
    #245262
    Veronica
    Moderator
    hi, for full description: use this custom css ul.create_course li.vibe_post_excerpt a.link.toggle_vibe_post_content { display:none; } check this: http://prntscr.com/rerglz
    for this: https://prnt.sc/rddlkk no error will occur but yes after hiding this, you are not able to describe the categories. but still if you want to hide than use this: .element_overlay.element_overlay_quiz .list-group.list-group-sm.open .list-group-item .field_wrapper { display:none; } check: http://prntscr.com/rerkr4
    for the rest one, I have to right code please ping me tomorrow for the rest one. I have to check the code whether it's possible to set the default values for the settings and hide them. need your patience.
    #245436
    ayanfe4favour
    Participant
    @Veronica You asked me to ping you today for the rest of the code... Also, the code you sent to hide Category in Edit Course, when I applied, it hide all the items in Quiz Setting including the Category of Quiz. It also hid some of the element I want show also... But did not hide Category in Edit course which I want it hid.... Please, help   Thank you
    #245588
    Veronica
    Moderator
    hi, request you to delete the above code. and use the below code:
    for this: https://prnt.sc/rddh42 and this https://prnt.sc/rddvby. default values can be set and hide by the below code. paste the code in plugins>>plugin editor>>wplms-customizer>>wplms-customizer.php<!--?php }); ?--> add_action('wp_head',function(){   ?> <script> jQuery(document).ready(function($){ $('#course_curriculum').on('active',function(){ jQuery('body').find('#vibe_freeH').prop('checked',true); jQuery('body').find('#vibe_freeH').trigger('change'); jQuery('body').find('#vibe_freeH').closest('.list-group-item').hide(); jQuery('body').find('[data-id="vibe_unit_duration_parameter"]').val(60); jQuery('body').find('[data-id="vibe_unit_duration_parameter"]').trigger('change'); jQuery('body').find('[data-id="vibe_unit_duration_parameter"]').closest('.list-group-item').hide(); jQuery('body').find('[data-id="vibe_quiz_duration_parameter"]').val(60); jQuery('body').find('[data-id="vibe_quiz_duration_parameter"]').trigger('change'); jQuery('body').find('[data-id="vibe_quiz_duration_parameter"]').closest('.list-group-item').hide(); }); }); </script> <?php }); <!--?php }); ?--> ?>
    use this custom css for this: https://prnt.sc/rddjmc .element_overlay.element_overlay_unit .list-group-item.vibe_vibe_subtitle .field_wrapper{ display:none !important; }
    ul.create_course li.vibe_post_excerpt a.link.toggle_vibe_post_content { display:none; } for this:https://prnt.sc/rddqu5
    .list-group-item .add_cpt .new_cpt .field_wrapper{display:none;} .list-group-item .add_cpt .new_cpt select#vibe_question_template{ display:none; } for this: https://prnt.sc/rddx2w
    #245590
    ayanfe4favour
    Participant
    Thank you...   I will add, test and get back to you...
    #245597
    ayanfe4favour
    Participant
    This reply has been marked as private.
    #245646
    Anshuman Sahu
    Keymaster
    Well the above code has the <script> tag missing .   Please use this code in your wplms-customizer.php file :     add_action('wp_head',function(){   ?> <script> jQuery(document).ready(function($){ $('#course_curriculum').on('active',function(){ jQuery('body').find('#vibe_freeH').prop('checked',true); jQuery('body').find('#vibe_freeH').trigger('change'); jQuery('body').find('#vibe_freeH').closest('.list-group-item').hide(); jQuery('body').find('[data-id="vibe_unit_duration_parameter"]').val(60); jQuery('body').find('[data-id="vibe_unit_duration_parameter"]').trigger('change'); jQuery('body').find('[data-id="vibe_unit_duration_parameter"]').closest('.list-group-item').hide(); jQuery('body').find('[data-id="vibe_quiz_duration_parameter"]').val(60); jQuery('body').find('[data-id="vibe_quiz_duration_parameter"]').trigger('change'); jQuery('body').find('[data-id="vibe_quiz_duration_parameter"]').closest('.list-group-item').hide(); }); }); </script> <?php });
    #245838
    ayanfe4favour
    Participant
    This reply has been marked as private.
    #246003
    ayanfe4favour
    Participant
    Thank you it is working now... I will update you soon on what I have done....
    #246011
    ayanfe4favour
    Participant
    This reply has been marked as private.
    #246015
    Veronica
    Moderator
    ok perfectly fine.
    #246026
    ayanfe4favour
    Participant
    This reply has been marked as private.
Viewing 15 posts - 1 through 15 (of 61 total)
  • The topic ‘Hide Components / Elements’ is closed to new replies.