Bridge By Qode Interactive

Case:
Theme loads all their admin .JS and .CSS on all admin pages instead of just loading on the pages that require them. In SVI case this breaks the reduxFramework functionality preventing SVI from loading it’s options properly.

Fix:
Insert at the end of your Child or Parent theme functions.php file the following code:

function SVIcleanBridge()
{
if (isset($_GET['page']) && $_GET['page'] == 'woocommerce_svi') {
remove_action('admin_init', 'bridge_qode_admin_scripts_init');
}
}
add_action('after_setup_theme', 'SVIcleanBridge');