Hi,
In the file inc/plugin-compat.php it adds inline css to override the css settings done by the plugin “bbp style pack”. It uses the following call: add_action( 'wp_enqueue_scripts', 'generate_bbpress_css', 100 );
I tried adding the following to the functions.php in my child theme but it didn’t work: remove_action( 'wp_enqueue_scripts', 'generate_bbpress_css');
How can I remove this action?