If you do not want to use certain parts of the theme in this article I’m going to explain how to hide and disable some parts.
You can remove the tabs by simply adding the following CSS code on your style sheet ( plugins/nd-learning/assets/css/style.css ) :
Remove Teachers Tab
.nd_learning_tabs ul li a[href="#nd_learning_single_course_teachers"]{ display: none; }
Remove Attendees Tab
.nd_learning_tabs ul li a[href="#nd_learning_single_course_attendees"]{ display: none; }
Remove Comments Tab
.nd_learning_tabs ul li a[href="#nd_learning_single_course_comments"]{ display: none; }
Remove Program Tab
.nd_learning_tabs ul li a[href="#nd_learning_single_course_documents"]{ display: none; }
Remove Reviews Tab
.nd_learning_tabs ul li a[href="#nd_learning_single_course_reviews"]{ display: none; }
From version 4.4 we added the unique IDs for each element, so you can hide your element in a simple way by adding the following code on your style sheet ( plugins/nd-learning/assets/css/style.css ) :
Remove Price Row
#nd_learning_single_course_table_info_price{ display: none; }
Remove Max Availability Row
#nd_learning_single_course_table_info_max_availability{ display: none; }
Remove Difficulty Row
#nd_learning_single_course_table_info_difficulty{ display: none; }
Remove Location Row
#nd_learning_single_course_table_info_location{ display: none; }
Remove Typology Row
#nd_learning_single_course_table_info_typology{ display: none; }
Remove Book Button ( from version 4.5 )
#nd_learning_single_course_all_book_buttons{ display: none; }
From version 4.5 we added the unique IDs for other some elements, so you can hide your element in a simple way by adding the following code on your style sheet ( plugins/nd-learning/assets/css/style.css ) :
Header Image : date and duration indications
#nd_learning_single_course_header_img_date_duration{ display: none; }
Header Image : price right section
#nd_learning_single_course_header_img_price{ display: none; }
Info course below the title ( not header image ) : Teacher, Category and Print icon
#nd_learning_single_course_info_course_teacher{ display: none; }
#nd_learning_single_course_info_course_category{ display: none; }
#nd_learning_single_course_info_course_print{ display: none; }