How to remove the dynamic CSS from the plugin

Suppose you want to remove the dynamic CSS style from the team view. With the custom code below, you can easily do it. If you check the code, you will see two filter hooks available (team_pro_style_load_in_header, and sp_team_pro_dynamic_css) in the plugin, which allow you to modify the plugin’s functionality. Add the following custom code to your current theme’s functions.php file.

add_filter( 'team_pro_style_load_in_header', '__return_false' );
add_filter( 'sp_team_pro_dynamic_css', '__return_false' );