I still have a problem with the sidebar not working. I wonder if I need to choose a different course-platform or change the Theme (-> create the entire website again). I need to have a first version working until Thursday.
Adrian, the Theme developer (Total Theme) has given me this snippet and it is active:
// Alter the layout for the courses post type // Choices: left-sidebar, right-sidebar, full-width or full-screen add_action( ‘wpex_post_layout_class’, function() { if ( is_singular( ‘course’) ) { $layout = ‘right-sidebar’; } return $layout; }, 40 );