Hello @itsbobross,
Thanks for posting in!
To remove your sidebar in your learn dash pages, assuming that the child theme is set up, please add the following code in your child theme’s functions.php file
add_filter('x_option_x_layout_content', 'remove_sidebar_learndash',999);
function remove_sidebar_learndash($layout) {
if ( 'product' == get_post_type() || 'sfwd-courses' == get_post_type() || 'sfwd-lessons' == get_post_type() || 'sfwd-quiz' == get_post_type() || 'sfwd-topic' == get_post_type() || 'sfwd-certificates' == get_post_type() ) {
$layout = "fullwidth";
}
return $layout;
}
To remove the footer, author and other meta, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
.single-sfwd-courses .p-meta,
.single-sfwd-lessons .p-meta,
.single-sfwd-quiz .p-meta,
.single-sfwd-topic .p-meta,
.single-sfwd-certificates .p-meta,
.single-sfwd-courses .x-colophon,
.single-sfwd-lessons .x-colophon,
.single-sfwd-quiz .x-colophon,
.single-sfwd-topic .x-colophon,
.single-sfwd-certificates .x-colophon {
dispay: none;
}
We would love to know if this has worked for you. Thank you.