Curious… the solution:
add_filter('private_title_format', 'ntwb_remove_private_title');
function ntwb_remove_private_title($title) {
return '%s';
}
used to work for taking off the “Private” suffix for my Private forums… now it’s not working since the upgrade… any solutions??
@avalon98 It still works for me, are you sure the plugin/theme your using this in is still activated?
Hi, I have some custom rewrite rules that stopped working after the last update.
All of the rewrite rules are like the following:
‘estoy-leyendo/(\d+)/?$’ => ‘index.php?’ . bbp_get_user_rewrite_id() . ‘=’ . $wp_rewrite->preg_index(1) . ‘&profileSection=estoyleyendo’
Is there any change on the bbp_get_user_rewrite_id() function?
Or where the problem could be?
Thanks in advance
Ok, the problem was that for some reason now you need to use the user_nicename as the value for the parameter of the rewrite id. Previously worked just fine with the user id instead