Hustle Pro conflicting with the Theme

With Hustle enabled, the media library inside the page builder is not loading.

  • Panos
    • SLS

    Hi there Ryan Hodson !

    I just tested the theme you shared with Hustle active on my site, but I couldn’t replicate this. There might be some other conflict with some other plugin but can’t be sure. You can try deactivating them all on your site keeping Hustle and the Zeen engine ones only active and see if you can replicate.

    As a workaround, you can use a custom snippet that deregisters Hustle’s js scripts from the builder’s edit pages. I have already tried that on your staging site, where I created a new mu-plugin:
    wp-content/mu-plugins/hustle-fix-for-zeenengine.php
    with the following content:

    
    add_action( 'hustle_register_scripts', function(){
    
        wp_deregister_script( 'hustle_front' );
        wp_deregister_script( 'hustle_front_fitie' );
        
    } );

    and it seems to work. You can try doing the same on your productions site, just note that the Hustle’s pop-ups and slide-ins won’t work in the builder’s pages (when editing pages using the Tipi builder).

    Kind regards!