Forum Replies Created
-
In reply to: VERY HIGH log spam on every page load
thanks, I can replicate – let me look at causes
In reply to: need help troubleshooting errorsreceived – thanks
no combo, so just hook separately 🙂
so when a user posts a topic or they reply to a topic, you want to give them a reward immediately, but then not give them a further reward for the remainder of that day ie give them a reward for the first post they make each day.
and not use the previous reward system
Yes?
a few years ago it was stored against the user.
But it is now stored against the post, so is held in the postmeta table under
_bbp_engagement
so topic with ID 33990 will have an entry in the postmeta table under
_bbp_engagement with user id’s eg 1191 2563
etc
.bbp-topics-front ul.super-sticky, .bbp-topics ul.super-sticky, .bbp-topics ul.sticky, .bbp-forum-content ul.sticky { background-color: transparent !important; }
and for closed and sticky
.bbp-topics-front ul.super-sticky.status-closed, .bbp-topics ul.super-sticky.status-closed, .bbp-topics ul.sticky.status-closed, .bbp-forum-content ul.sticky.status-closed { background-color: red !important; }
In reply to: VERY HIGH log spam on every page loadwhat theme are you using?
In reply to: need help troubleshooting errorsas with your other question
Themes
As a test switch to a default theme such as twentytwenty, 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.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: bbp style pack – search box settingok, that does not belong to the bbpress search field default.
It could be added by several things, without a link to a live example (which would let me see in browser what class it is and try and see what is sending it) I can only suggest you
Themes
As a test switch to a default theme such as twentytwenty, 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.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: Elementor and BBpress theme builderNot sure I can help on this – could be many things, most will be site or database specific, beyond my help
In reply to: Please update the font family used in the forum.Most likely theme related.
link to a live example please
In reply to: show_search=”false”In reply to: show_search=”false”you can turn off searching using
dashboard>settings>forums>forum features>search forums
In reply to: Topic to be approvedemail rarbin@btinternet.com
In reply to: Topic to be approvedyes that would be it, and yes bbpress uses these settings for moderation
In reply to: Topic to be approvedIf you are not using Askismet plugin or a moderation plugin, then
dashboard>settings>discussion>comment moderation.
you need to submit this to Yoast, nothing that bbpress can do about it
For those who are less keen on code, or who install or already have
then just go to
dashboard>settings>bbp style pack>Topic/Reply Form
and use option 6
In reply to: Cross posting between forumsCan you explain what you mean by that – what are you trying to achieve?
Great – glad you are fixed
but yes it’s fixed in 2.6.14
// BuddyPress < 12.0 (deprecated code is intentionally included) if ( function_exists( 'bp_core_get_user_domain' ) ) { $url = array( bp_core_get_user_domain( $user_id ) ); // BuddyPress > 12.0 (rewrite rules) } elseif ( function_exists( 'bp_members_get_user_url' ) ) { $url = array( bp_members_get_user_url( $user_id ) ); }
so are you seeing this notice?
Very briefly tested as I am on holiday tomorrow, but try this
$r = array( 'post_type' =>bbp_get_reply_post_type(), 'post_parent' => $topic_id, 'author__not_in' => array( $author_id) ); $reply_posts = new WP_Query($r); $count = $reply_posts->post_count;
In reply to: Latest reliable PHP version?ok, thanks.
Given that the file is now ‘redundant’ in the child theme (as it is now the same as bbpress), are you able to remove both that whole file and the call to it – presumably in the child theme functions file.
It may be that calling it as part of a theme rather than plugin is affecting how bbpress works at that point – but I am just guessing at possible issues