I think I found a workaround to the toolbar icons not displaying (or at least, it’s working for me). Add this code:
wp_enqueue_style('dashicons-css', '/wp-includes/css/dashicons.min.css');
to the pf_stop_capture method:
function pf_stop_capture(){
ob_get_clean();
remove_action('bbp_theme_after_topic_form', 'pf_stop_capture');
wp_enqueue_style('dashicons-css', '/wp-includes/css/dashicons.min.css');
}
Would be great if this were fixed. 🙁
Broken for me too. This is the second breakage in a very short time period. Getting a bit fed up.