remove duration, badge & certificate

Home Forums Legacy Support Support queries Setup issues remove duration, badge & certificate

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #36287
    javart
    Participant
    I'd like to remove the course duration, badge and certificate from the course page. See screenshot. Can you please let me know how to do this?
    #36421
    Anshuman Sahu
    Keymaster
    #36678
    skillomo
    Participant
    Hi I'm trying it but now all information is gone. I only need to hide course duration and badge. I need to display the price. Pleae check attachment.
    #36950
    Anshuman Sahu
    Keymaster
    Please remove the code that you have added and add the given code in your wplms-customizer.php file  at the end before "?>" in wplms customizer plugin :   add_filter('wplms_course_details_widget','remove_wplms_course_details_widget'); function remove_wplms_course_details_widget($course_details){  $key = array('time','badge','certificate');  foreach($key as $k){   unset($course_details[$k]);  } return $course_details;   }
    #37025
    skillomo
    Participant
    Now it works. Many thanks
Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘remove duration, badge & certificate’ is closed to new replies.