Hi Good afternoon ….
I can see that this was a question before …. I have the same issue. I am a newbie to WP and bbPress.
This is clean WP install using Pagebuilder by SiteOrigin and Advantage theme running bbPress. No modifications. with bbPress style pack, Akismet Anti-Spam and using Easy WP SMTP for emails.
As administrator I get email notifications for new subscribers and for change of password requests so the email function is working.
I have set up a test user and some posts making sure the “notify me of follow-up replies by email” is checked then as the administrator have replied to the post. My test user is not getting any notifications.
Is there something I am missing that needs setting up or altering to send the reply notifications?
Thanks in advance for your help.
I deactivate all plugins except for bbpress, test to register but failed still.
set up email to come from my site eg @mysite.com and
contact my host provider (SG) to help – problem still.
I install https://wordpress.org/plugins/check-email/
admin accepted test email.
but problem still too.now I deactivate plugin check-email.
SG help me to set plugin”WP Mail SMTP” .problem still too.
hope can assist me. thanks a lot.
I checked and tested 4 times to register with the same account.but the site didnt noticed that cant register with the same account.and the user is not getting any registration email after each register.
and I(admin) didnt get any notification about a new user too.
I (admin)had got notification email when I set up a topic yesterday.
i can create new user accountA successfully via wp dashboard.
and admin and user accountA got the notice email .
the user accountA got the registration email .
but user accountA cant login .
I try but no luck.
Please help! thanks
Good idea, I’m going to test it
Hi,
My forum stat widget looks like this: https://www.dailyenglishtests.com/forums/
How do I display the numbers and the text in one line?
Thanks
HI,
site: https://www.visionshe.com
admin@visionshe.com
I checked and tested 4 times to register with the same account.but the site didnt noticed that cant register with the same account.and the user is not getting any registration email after each register.
and I(admin) didnt get any notification about a new user too.
I (admin)had got notification email when I set up a topic yesterday.
I try but no luck.
Please help! thanks
Hi Robin,
Thank you, if I add that to my functions file, it adds it to a new reply perfectly if I as admin create that new reply.
But it does not work if a guest replies (it is normal for my replies to be from guests) all replies go to moderation and at the moment, before I approve the reply by publishing I add test at the end of each content. It is when I click publish that I want it to add the text.
Regards
Clive
Thanks for posting this. I installed the plugin, and added
// Paragraph
'p' => array(
'class' => true,
'style' => true,
But sadly I still get this in cleartext:
<p style=”text-align: center;”>Test 3</p>
Any suggestions? Thanks!
Hi!
I was wondering if anyone knows how to allow users to align text in posts/threads?
Right now it just comes out as raw code text:
<p style=”text-align: center;”>Test test test</p>
I have been trying to mess a bit in /wp-content/plugins/bbpress/includes/common/formatting.php but to no success. Does anyone have a suggestion on how to allow p style and text alignments?
Thank you!
Seen this one come up a few times in this forum, but have yet to see a fix. Hopefully the following additional details help to diagnose the threaded replies not working very well:
– It is not a conflict with my theme (I switched to 2019 and disabled all plugins).
– The issue does not occur when I am logged in as an administrator (nested/threaded replies work fine if I’m logged in with my admin account) or when all other plugins are disabled.
– Re-enabling WooCommerce makes the issue come back (so that suggests that there is some interaction with WC that is causing this).
– When the issue is present, the reply form briefly appears where it’s supposed to (directly below the reply that I am replying to), but the page then redirects to the same page with querystring parameters appended to the URL. Example: mysite.com/topic/the-topic-title/?bbp_reply_to=7330&_wpnonce=bb385daa6e#new-post
– Also when the issue is present, I see the following js errors in the console when I hit reply:
“TypeError: event.target.matches is not a function” – touch-keyboard-navigation.js:277:22
“TypeError: d is null” – reply.min.js:3:997 (appears to have to do with scrolling, probably what’s in charge of scrolling the page down to the reply form)
I’m guessing that maybe this redirection should be disabled somewhere? I can’t interrupt it to test out whether the reply would work correctly if the page didn’t redirect me first.
Since WooCommerce is such a common plugin, I’m hoping this issue can be addressed.
I just got an email from a user who cannot edit his post. Looking at my settings, I found I had “Disallow editing after” set to 5 minutes. Underneath, it reads:
When this is checked, the setting to “0 minutes” makes it possible to always edit.
So, I entered 0 and hit Save. When I check the setting, it says 5 again. I tried several times, always with the same result (duh!). Any ideas how to fix this?
For now, I have entered a string of 999999999999, but that’s not very elegant, is it now?
I’m on the latest version of both WP and bbPress, using Twenty Sixteen as my theme.
Wow…Thanks for these code.
I tested it on my test site with newmag wordpress theme by tagdiv and it worked.
But on the main site, I’m using Jnews Child theme. I tried it, but it did not work. Perhaps it because I don’t know which function.php to use; main theme or child theme funtion. Tried with child theme, but it did not work.
@robin-w This is not working as expected and I think there is a bbpress bug. I’m currently testing in my localhost but I think I will publish on trac what I’m finding
Is it possible to remove user icon from revisions?
Edit: testing
Hey,
I have created a website where my users are allow to create their own Forums… However, when I tested it out as a user, I can’t create a Forum without a “Parent Forum.”
Is there a way to allow my users to create Forum without needing a Parent Forum. (Or somehow create a “Parent Forum” by themselves)
Thank you very much!!!
I tried out this plugin a bit ago locally and seemed to work, my email did go into the spam/trash folder; but that could have been because I was testing locally.
Check your trash/spam folder and see if the mention replies are ending up in there.
The below should update the “Topic” page and the main “Forum” page.
Once you add the code, you’ll have to add a reply to a topic for it to update. Or run the forum repair Robin W mentioned above.
Add the below code to your functions.php
file of your theme (preferably child theme), or use the code snippet plugin.
if(!function_exists('ticket3297_bbpress_update_latest_activity')){
function ticket3297_bbpress_update_latest_activity( $reply_id, $topic_id, $forum_id ){
$new_time = get_post_field( 'post_date', $reply_id );
if ( ! empty( $new_time ) ) {
update_post_meta( $forum_id, '_bbp_last_active_time', $new_time );
}
update_post_meta( $forum_id, '_bbp_last_active_id', $reply_id);
update_post_meta( $forum_id, '_bbp_last_reply_id', $reply_id );
$forum_obj = get_post( $forum_id );
if( $forum_obj && $forum_obj->post_parent !== 0 && bbp_is_forum_category( $forum_obj->post_parent ) ){
update_post_meta( $forum_obj->post_parent, '_bbp_last_active_id', $reply_id );
update_post_meta( $forum_obj->post_parent, '_bbp_last_reply_id', $reply_id );
if ( ! empty( $new_time ) ) {
update_post_meta( $forum_obj->post_parent, '_bbp_last_active_time', $new_time );
}
}
}
add_action( 'bbp_new_reply', 'ticket3297_bbpress_update_latest_activity',10,3 );
}
if(!function_exists('ticket3297_bbpress_delete_update_latest_activity')){
function ticket3297_bbpress_delete_update_latest_activity(){
$reply_id = bbp_forum_query_last_reply_id();
ticket3297_bbpress_update_latest_activity( $reply_id, bbp_get_reply_topic_id( $reply_id ), bbp_get_reply_forum_id( $reply_id ) );
}
add_action('bbp_deleted_reply','ticket3297_bbpress_delete_update_latest_activity');
add_action('bbp_trashed_reply','ticket3297_bbpress_delete_update_latest_activity');
}
That should run when replying, deleting, and trashing replies.
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
Hmm!
I’m planning on having the Bot grant forum moderation over 1 topic after receiving X amount of GamiPress points from a User.
The context: it’s an author/writer forum and people might get interested in testing their own skills by submitting texts, that’s where having moderation power over this single topic would come in play; they would control whatever happens inside their “test-post”.
ok, I can only suggest that you revert to the standard tests
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
Buongiorno,
ho un problema con il forum: alcuni utenti che appaiono iscritti non riescono a fare login utilizzando i dati da loro impostati, pur facendo molti tentativi.
Ecco le info sul mio sito:
Mi è stata installata la versione 5.3.2 di WordPress.
Da poco mi è stata installata la versione 2.6.4 di BBpress.
Il link al forum nel mio sito è questo: https://www.nuovicontesti.com/forum/forum/
Sto usando il tema Twenty Twenty di WordPress.
Grazie,
Federica
My php is 7.3.15. Latest stable.
@ajtruckle split works fine on my test sites for 2.5.x and 2.6.x, hence why I am suggesting site for database issue for your site.
Hi,
I seem to be experiencing this behaviour in 2.6.4. Not sure where to go from here…? I have a test site set up with only bbpress 2.6.4, theme Twenty Twenty v1.1, and an example forum exhibiting the problem, protected behind SeedProd’s Coming Soon plugin (though still get the problem if this is deactivated too). A number of other plugins from the live site are installed but deactivated. I would be delighted if an expert could take a look, and can provide login plus info on where to see the problem… First time you reply to the test reply, it bounces to the bottom; second time, it works… Odd.
Thanks for your time.
Neil