MemberPress: Load All Currently Enqueued Styles In the Courses ReadyLaunch Template
function mepr_load_course_styles( $allowed_handles ) { global $wp_styles; // Add all currently enqueued styles to the list of allowed handles foreach ( $wp_styles->queue as $style ) { $allowed_handles[] = $style; } return $allowed_handles; } // Add the filter to modify the…Continue reading