Hi there,
You can deregister the scripts used for qTip and it won’t display.
function efn_deregister_scripts() {
wp_deregister_style( 'qtipstyles' );
wp_deregister_script( 'imagesloaded' );
wp_deregister_script( 'qtip' );
wp_deregister_script( 'qtipcall' );
}
add_action( 'wp_enqueue_scripts', 'efn_deregister_scripts' );
Putting that in your functions.php should do the trick. I’m using deregister because currently the scripts are enqueued in the shortcode. Something I would like to rework. You won’t need any of those scripts or styles if you have qTip disabled. Though other plugins may used imagesloaded so you may or may not use that.