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 amedeo_elated_admin_scripts_init_svi()
{
if (array_key_exists('page', $_GET) && $_GET['page'] == 'woocommerce_svi') {
wp_dequeue_script('amedeo-elated-ui-admin');
}
}
add_action('admin_init', 'amedeo_elated_admin_scripts_init_svi', 100);
This code will disable the script ‘amedeo-elated-ui-admin’ specificly on the SVI options page.