Removing Course Reviews

Home Forums Legacy Support Support queries Styling issues Removing Course Reviews

Viewing 15 posts - 1 through 15 (of 16 total)
  • Author
    Posts
  • #212887
    melgend
    Participant
    Hello, I want to remove the 'course review' functionality from my courses pages (removal on the top and bottom of the course page. Is there a way of doing this? Thanks,  
    #212961
    logan
    Member
    Hello, always refer to these two settings for course reviews. 1.For disabling the course review, edit the course in backend and un-check the allow comments box. Refer: http://prntscr.com/mujj1e 2.Edit course in the front end, disable this setting under settings to refer: http://prntscr.com/muynaz
    if you want to hide this section please let me know: http://prntscr.com/nz5fpf
    #213210
    melgend
    Participant
    This reply has been marked as private.
    #213316
    Diana
    Participant
    @melgend, Please refer this tip: https://wplms.io/support/knowledge-base/hiding-reviews-section-in-single-course-page/ Paste the code in wp-admin > Plugins > Editor > Select wplms customizer plugin > wplms-customizer.php > save changes
    #215841
    melgend
    Participant
    This reply has been marked as private.
    #215995
    Ava
    Member
    This reply has been marked as private.
    #216019
    melgend
    Participant
    This reply has been marked as private.
    #216024
    Ava
    Member
    As it looks in the screenshot you gave me, there is a close bracket ' } ' missing, it could be the issue. So please try to copy properly the right code again and save. Check again after that. If it still gave you some error, please let us know. Share your website URL and admin credentials in private reply so that we can check.
    #218020
    melgend
    Participant
    This reply has been marked as private.
    #218098
    maximus
    Member
    This reply has been marked as private.
    #218138
    melgend
    Participant
    This reply has been marked as private.
    #218145
    maximus
    Member
    This reply has been marked as private.
    #218410
    melgend
    Participant
    This reply has been marked as private.
    #218621
    Ava
    Member
    Hi Please add the below code in Wp-admin > plugin > customiser.php > save add_action('wp_head',function (){   global $post;   if($post->post_type == 'course'){     $rating=get_post_meta($post->ID,'average_rating',true);     if(empty($rating)){       ?>       <style>  .single-course #item-meta strong{display:none;}       </style>       <?php     }   } });     add_action('bp_directory_course_item',function(){   global $post;   $rating=get_post_meta($post->ID,'average_rating',true);   if(empty($rating)){     ?>     <style>     .course_id_<?php echo $post->ID;?> .course-star-rating{display:none;}     </style>     <?php   } });
    #218639
    melgend
    Participant
    This reply has been marked as private.
Viewing 15 posts - 1 through 15 (of 16 total)
  • The topic ‘Removing Course Reviews’ is closed to new replies.