How to Suppress Hidden Lessons and Topics on LearnDash Course Pages

Requires Modification of LearnDash Templates

This patch is for LearnDash displayed courses, and does not work with 3rd Party Templates such as BuddyBoss Social Learner.

Filename: /wp-content/plugins/sfwd-lms/templates/course.php
Filename: /wp-content/plugins/sfwd-lms/templates/course_content_shortcode.php

Add the following code near the top of the file, after the comments.

This code walks the lesson and topics arrays provided to the template, and rebuilds them without any of the content shielded by Memberium content protection.

<?php
// Start Memberium Code

if ( function_exists( 'memb_hasPostAccess' ) ) {
$i = array();
foreach( $lessons as $lesson ) {
if ( memb_hasPostAccess( $lesson['post']->ID ) ) {
$i[] = $lesson;
}
}
$lessons = $i;
unset( $i, $lesson );

$i = array();
foreach( $lesson_topics as $lesson_id => $lesson_topic ) {
if ( memb_hasPostAccess( $lesson_id ) ) {
foreach( $lesson_topic as $array_id => $topic ) {
if ( memb_hasPostAccess( $topic->ID ) ) {
$i[$lesson_id][$array_id] = $topic;
}
}
}
}
$lesson_topics = $i;

unset( $i, $topic, $lesson_topic );
}

// End Memberium Code
?>
  • Was this Helpful?
  • YesNo
9 ways to add more value to your membership site

Table of Contents

Keep Reading

Make Password

Use an HTTP post to generate a password and save it to the contact’s Infusionsoft record. Optionally create a local user in the WordPress database. If the user already exists in the WordPress database, no action will be taken.

Read More »

Output Capture

Most shortcodes let you pass a shortcode attribute of “capture=” with a comma separated list of destinations to send the output of the shortcode to.

Read More »

Want to get some fresh ideas on how you can improve your membership site or course?

Download our free ebook!

Book a Call

Welcome to Memberium!

We are very excited for you to be part of our family. 

We would love to answer any questions that you have!

Please choose the best time for you to get in a call with us. 

For Technical Support, you can contact us at https://keap.memberium.com/support/ or Email us at support@memberium.com.