• Resolved kuphd1

    (@kuphd1)


    this is the code i’ve used to dequeue the css file for the Magic Members screen on the backend. if anyone else is having the same styling issues, you might be able to use the same method.

    function event_calendar_admin_css_fix(){
    $current_screen = get_current_screen();
    if($current_screen->id === 'toplevel_page_mgm/admin') {
    wp_dequeue_style('tribe-jquery-ui-theme');
    }
    }
    add_action( 'admin_enqueue_scripts', 'event_calendar_admin_css_fix', 100 );
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Andras Guseo

    (@aguseo)

    Hey @kuphd1,

    Thanks for posting your solution here! Much appreciated!

    Cheers,
    Andras

    Thread Starter kuphd1

    (@kuphd1)

    No problem, Andras. ??

    A permanent fix might work by going the reverse route and only enqueuing (is that even a word… LOL) the ui.theme.css file for the screen it’s meant to style.

    By the way… excellent plugin. By far the best of its kind. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘ui.theme.css file conflicts with Magic Members plugin’ is closed to new replies.