Home / Archive / MemberPress: Load All Currently Enqueued Styles In the Courses ReadyLaunch Template
Duplicate Snippet

Embed Snippet on Your Site

MemberPress: Load All Currently Enqueued Styles In the Courses ReadyLaunch Template

By default, if the ReadyLaunch Courses/Lessons template is enable, the MemberPress Courses add-on won’t enqueue 3rd-party styles.

This code snippet loads all the currently enqueued styles in the Courses ReadyLaunch template by adding them to the list of allowed style handles.

Code Preview
php
<?php
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 allowed style handles in the Courses RL template
add_filter( 'mpcs_classroom_style_handles', 'mepr_load_course_styles' );

Comments

Add a Comment