07/17/2013 at 7:56 pm
#265063
Guest
Managed to solve my own query (though it’d still be great to have it as an option under Settings). Added the following to my functions.php file:
add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
function my_deregister_styles() {wp_deregister_style( 'connections-chosen' );wp_deregister_style( 'connections-user' );wp_deregister_style( 'connections-qtip' );}
:)
