Forum Replies Created
-
In reply to: forum posting takes a very long time
ok,
@johnjamesjacoby can you help here ?registration is a function of WordPress, not bbpress.
you can switch it off using
In reply to: Accessibility audit failuresok, can you list them here and I raise a ticket for you – I’m not a bbpress author, just someone who helps out on here.
ok, you should only receive bbpress emails when you create a topic or respond to a reply, and tick the ‘Notify me of follow-up replies via email’ like the one below the reply box on this thread.
can you specify a couple of examples of what you are getting ?
bbpress only send out emails you ask it to !!
1. are you using additional bbpress related plugins?
2. are you subscribed to forums?
3. are you using buddypress?In reply to: Accessibility audit failuresyour best bet would be to raise a trac ticket with a list of missing labels
In reply to: forum posting takes a very long timehave you run
dashbard>tools>forums>upgrade forums ?
In reply to: Can’t find settingsit 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
In reply to: BBPress Notifications not Clearing Upso you couldput this in your functions file of your child theme, it takes out then new filter and puts back the old one
remove_filter( 'bp_notifications_get_notifications_for_user', 'bbp_format_buddypress_notifications', 10, 8 ); add_filter( 'bp_notifications_get_notifications_for_user', 'rew_format_buddypress_notifications', 10, 5 ); function rew_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) { // New reply notifications if ( 'bbp_new_reply' === $action ) { $topic_id = bbp_get_reply_topic_id( $item_id ); $topic_title = bbp_get_topic_title( $topic_id ); $topic_link = wp_nonce_url( add_query_arg( array( 'action' => 'bbp_mark_read', 'topic_id' => $topic_id ), bbp_get_reply_url( $item_id ) ), 'bbp_mark_topic_' . $topic_id ); $title_attr = __( 'Topic Replies', 'bbpress' ); if ( (int) $total_items > 1 ) { $text = sprintf( __( 'You have %d new replies', 'bbpress' ), (int) $total_items ); $filter = 'bbp_multiple_new_subscription_notification'; } else { if ( !empty( $secondary_item_id ) ) { $text = sprintf( __( 'You have %d new reply to %2$s from %3$s', 'bbpress' ), (int) $total_items, $topic_title, bp_core_get_user_displayname( $secondary_item_id ) ); } else { $text = sprintf( __( 'You have %d new reply to %s', 'bbpress' ), (int) $total_items, $topic_title ); } $filter = 'bbp_single_new_subscription_notification'; } // WordPress Toolbar if ( 'string' === $format ) { $return = apply_filters( $filter, '<a href="' . esc_url( $topic_link ) . '" title="' . esc_attr( $title_attr ) . '">' . esc_html( $text ) . '</a>', (int) $total_items, $text, $topic_link ); // Deprecated BuddyBar } else { $return = apply_filters( $filter, array( 'text' => $text, 'link' => $topic_link ), $topic_link, (int) $total_items, $text, $topic_title ); } do_action( 'bbp_format_buddypress_notifications', $action, $item_id, $secondary_item_id, $total_items ); return $return; } }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
In reply to: BBPress Notifications not Clearing Upyes please post back your findings.
Just taken a quick look, so using previous versions works – which version 2.5.14 or later ?
In reply to: BBPress Notifications not Clearing UpI don’t monitor the buddypress support forum, it might be in there
great – glad you are fixed
glad you are fixed
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
In reply to: BBPress Notifications not Clearing Up@nikbond thanks, I don’t use buddypress, so have little experience of it, so any help you can provide would be great
In reply to: BBPress Notifications not Clearing Up1. which version of bbpress
2. what do you mean by notifications? – that is not a bbress phrase, do you mean notify on the topic/reply form?
3. so in addition to bbpress what other bbpress related plugins are you using ?In reply to: Allowing only the Forum creator to add the Topic??not really
In reply to: Headings in forum are to longgreat – glad you are fixed
In reply to: Allowing only the Forum creator to add the Topic??ok, so you could use
then when you set up each forum ‘I put the Forum creating shortcode on a page.’ you could also set up a group for the forum, add the creator as a member and give him permission to create topics.
It is a but labor intensive, but would work.
How many forums are you planning ?
In reply to: Headings in forum are to longok, try this instead
#bbpress-forums ul.forum-titles li.bbp-forum-info { font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-topic-count{ font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-reply-count{ font-size: 10px !important ; } #bbpress-forums ul.forum-titles li.bbp-forum-freshness{ font-size: 10px !important ; }In reply to: Allowing only the Forum creator to add the Topic??how are they creating the forum? eg buddypress, they are admins or how ?
In reply to: Can anyone help me with this E_ERRORno, that probably wasn’t the problem, if you had been on version 5.x then that might be the issue.
If php version doesn’t fix then 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
In reply to: Headings in forum are to longtry
.bbp-header { font-size : 10px ; }