Forum Replies Created
-
In reply to: Topics Not Showing on Forum
great – thanks for letting us know
no idea why it isn’t working for you on the back end – works fine on my test site
tried backend and frontend?
In reply to: subscribe to individual topicsif you have subscriptions set in
dashboard>settings>forums
then this should show.
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
I suspect that another plugin or your theme is causing this.
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: How to hide forums from moderators?I think this is what you need
In reply to: Topics are not shown in forum overviewgreat – pleased your are fixed
In reply to: Topics are not shown in forum overviewok, thanks, got it
my style pack lets you put then topic title in the last column
once activated go to
dashboard>settings>bbp style pack>Freshness Display
In reply to: when bbpress is enabled, all pages will disappeargreat – glad you are fixed
In reply to: when bbpress is enabled, all pages will disappeartry
dashboard>settings>permalinks and click save – this resets them
In reply to: Character Counttry >500 not <500
In reply to: Character CountI don’t know how technical you are, this one does the opposite
function rew_min_length ($reply_content) { if (strlen($reply_content)<61) { bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply must be at least 60 characters.', 'bbpress' ) ); } return $reply_content ; } add_filter( 'bbp_new_reply_pre_content', 'rew_min_length' );I mean it would require someone writing some code
the includes/forum/template.php has a function called bbp_get_forum_class which adds classes, but as far as I can see it is never used.
bbp_list_forums in the same template has
// Subforum classes $subforum_classes = array( 'bbp-forum-link' ); $subforum_classes = apply_filters( 'bbp_list_forums_subforum_classes', $subforum_classes, $sub_forum->ID ); // This could use bbp_get_forum_class() eventually... $subforum_classes_attr = 'class="' . implode( ' ', array_map( 'sanitize_html_class', $subforum_classes ) ) . '"';so looks like this is a plan?
anyway you could use the line listed above
$subforum_classes = apply_filters( 'bbp_list_forums_subforum_classes', $subforum_classes, $sub_forum->ID );to add a call to that function
sorry that’s then best I can do
In reply to: 404 after updatetry
dashboard>settings>permalinks and simply press save – this resets the links and might fix
In reply to: Styling issue inherited from themesorry, we only fix bbpress issues 🙂
not possible without additional code
In reply to: Group forums scattered in weird placeshmmm….sorry I’m not a buddypress user, so have no experience with this
In reply to: Add bbp_author_ip to backendthanks – glad it worked for you, and very much thanks for the PP !!
I’ll look at the other thread later – on way out today !!
In reply to: Add bbp_author_ip to backendbasically bbpress has the ability to add columns via a filter
This should do it
add_filter("bbp_admin_replies_column_headers", 'rew_IP_column_add'); add_filter("manage_reply_posts_custom_column", 'rew_IP_column_value', 10, 3); function rew_IP_column_add($columns) { $new = array(); foreach($columns as $key => $title) { if ($key=='bbp_reply_forum') // Put the forum ID column before the Replies forum column $new['rew_id'] = 'IP Address'; $new[$key] = $title; } return $new; } function rew_IP_column_value($column_name, $id) { if ($column_name == 'rew_id') echo get_post_meta( $id, '_bbp_author_ip', true ); }Put this in your child theme’s function file – or use
In reply to: Styling issue inherited from themeGreat – glad you are fixed !!
In reply to: Styling issue inherited from themenot certain this will work, but put this in the custom css area of your theme
#bbpress-forums ul li::before { content : none !important ; }In reply to: Styling issue inherited from themeif forums are visible, can we have a link
In reply to: Group forums scattered in weird placesfor each forum, check whether it is a category or a forum, and check whether a parent is set
In reply to: Stop Auto Converting Text Url into Hyperlinked Urljust looked at the new code – try
remove_filter( 'bbp_get_reply_content', 'bbp_make_clickable', 40); remove_filter( 'bbp_get_topic_content', 'bbp_make_clickable', 40);