Hi there!
I guess you are talking about the following stylesheet:
/wp-content/plugins/wp-store-locator/css/styles.min.css
If you want to dequeue it from all pages except, say, page with id=1, you could try this code snippet:
add_action( 'wp_enqueue_scripts', 'custom_dequeue_styles', 11 );
function custom_dequeue_styles() {
if (get_the_ID() != 1) {
wp_dequeue_style( 'wpsl-styles' );
}
}
Place the above code snippet in your active theme’s functions.php file and replace the “1” in the conditional statement with the id of the post or page where you have used the [wpsl] shortcode.
I hope that helps!
Regards,