Do you have any templates regarding the "All Courses" page?
I have connected the All Courses page to Budypress pages so that a student can view the purchased courses. But the look of the page is awful. Also, it breaks my Footer CSS.
This is the link: https://atalosweb.net/courses/all-courses/
This is where the connection has been made: https://prnt.sc/OGTI1jGQRtBX
Also once I load the All Courses Page it has the Cart panel open and my page is disabled.
I have resolved this issue by adding some piece of code I found in the forum inside WPLMS > FOOTER > Google Analytics Code
<script>
jQuery(document).ready(function(){
jQuery('a#elementor-menu-cart__toggle_button').click(function(){
let att = jQuery('.elementor-menu-cart__container.elementor-lightbox').attr('aria-hidden');console.log(att);
if(att=='true'){att='false';}else{att='true';}
jQuery('.elementor-menu-cart__container.elementor-lightbox').attr('aria-hidden',att);
});
jQuery('.elementor-menu-cart__close-button').click(function(){
jQuery('.elementor-menu-cart__container.elementor-lightbox').attr('aria-hidden','true');
});
});
</script><style>.elementor-menu-cart__container.elementor-lightbox[aria-hidden="true"] {
display: none;
}
.elementor-menu-cart__container.elementor-lightbox[aria-hidden="false"] {
display: initial;
}</style>