Hello I am not using bootstrap on my site, but the bootstrap min js script is still loaded even though I set the option to "this site is not using Bootstrap CSS" in the settings menu.
How do I make sure this large js script is not loaded on my site?
I tested the settings just now, and the Bootstrap CSS and JS files are both added by Toolset if you select the setting "Toolset should load Bootstrap 3.0", but neither the CSS nor the JS are added if you choose another setting.
If you look at the page source where the boostrap.js has been added you should be able to see the complete path, indicating which plugin has added it (unless it is served from a CDN, in which case it is not added by Toolset).
As for the maps styling, I'm looking into it and will get back to you.
The styles are added using a css_fix function added to the wp_footer action, and I'm trying to find the correct way to remove the action.
I just heard back from the developers that it is technically not possible to remove the action that adds the Maps styling. The styles are added on all pages because Toolset doesn't know in advance which pages or posts you might want to add maps to, and because of the way the action is added using a dynamic Class it is not possible to remove the action.
Sorry I can't help you with that last point.
Let me know about the Bootstrap JS, which I believe is being added by another plugin (or your theme), but correct me if I'm wrong.
You should be able to dequeue the Bootstrap JS file with the following code snippet that you will need to add to your theme's functions.php file (or using a plugin such as Code Snippets):
Regarding the Maps CSS it's simply not possible to remove it without editing the plugin files themselves, because of the way that the function that prints the CSS is hooked. (I confirmed that with the developers directly.)
All I can do is make a feature request to change how the function is hooked to make it possible to remove the action. I'll pass that request on to the person concerned with a link back to this thread.