Forum Replies Created
-
In reply to: Forum sort order not working
An order of -2 seems strange to me 🙂
@jsteckler1,
I have no idea on how things were setup, but just to add my idea:
– On save_post, launch your own routine
– in your routine, if it’s a topic, set the post_parent to the forum ID (so _bbp_forum_id)
– in your routine, it it’s a reply, set the post_parent to the topic ID (so _bbp_topic_id)In reply to: Error plugin bbPress Import & ExportOk, great to hear.
In reply to: Notifications in Top MenuIf you find someone that has that in a plugin, it would be great to mention it here!
But can’t really think of any that has that all…In reply to: Noidex metatag to groups of pagesgreat, so we are finally moving in the correct way 🙂
I hope to find some time in the next days to also check out those and then back to your initial question with the full list.
In reply to: Remove noreply email from notification emailsIf you do not want to use a plugin, check out this snippets (that you could add into your functions.php):
add_filter( 'wp_mail_from_name', 'email_sent_from_name' ); function email_sent_from_name( $name ) { return 'SITE NAME'; } add_filter( 'wp_mail_from', 'email_sent_from' ); function email_sent_from( $email ) { return 'email@example.com'; }
Or for more granular tasks, consider even:
add_filter('bbp_get_do_not_reply_address','my_bbp_no_reply_email'); function no_reply_email(){ $email = 'noreply@yourdomain.com'; // any email you want return $email; } add_filter('bbp_subscription_to_email','my_bbp_subscription_to_email'); function my_bbp_subscription_to_email(){ $email = 'noreply@yourdomain.com'; // any email you want return $email; }
In reply to: Remove noreply email from notification emailsHi,
Have a look if this small plugin helps: https://www.tipsandtricks-hq.com/wordpress-plugin-change-wp-email-from-details-1883.
Pascal.
In reply to: Forum sort order not workingFrom your backend, go to Forums > All Forums, and edit the forum you want to move.
In the ‘Forum attributes’ box at the right, add a number different from 0 next to ‘order’.
There you can defined the order of the forums.If you have done that and the order is not respected, then try with a standard theme and check again to make sure it’s not your theme that is not respecting the order.
In reply to: Error plugin bbPress Import & ExportIf you are just exporting and importing, why not using the standard WP tools export and import? See https://codex.bbpress.org/getting-started/exporting-data/
Or are you trying to do something special?
In reply to: Noidex metatag to groups of pagesI just added this on my test site:
add_action( 'wp_head', 'casiepa_add_noindex' ); function casiepa_add_noindex() { if ( bbp_is_single_user_profile() ) { wp_no_robots(); } }
And I when I go to the profile of a user (in my case /forums/users/user1/), I now correctly find:
<meta name='robots' content='noindex,follow' />
Could you have a check on your side?
In reply to: New user registration error – suspected botbbPress is using standard WordPress functions for user registration, so this is not strictly bbPress related. In most of the cases it’s because of a security plugin or something in your theme. So the above steps from @robin-w should help you troubleshoot.
In reply to: Editing the Post Edit StyleHi,
If you are uncomfortable with finding CSS yourself, have a look at https://wordpress.org/plugins/bbp-style-pack/ if it would serve your need.@makingcircuits, sorry for the confusion. I know that you want to keep posts and then have the comments reflected into a forum. I just wanted to point out that the logic in my plugin could serve as a guideline.
@robin-w has reached out to the original author.
If no response, we will see what we can do.In reply to: Threading not workingHi Richard,
What setting do you have on your wp-admin > Settings > Discussion > Other Comment Settings > Enable threaded comments ?In reply to: Weird pagination on WordPress.com community forumsHi @arunsathiya,
I’m not sure if it was a temporary glitch, but it looks fine to me …
In reply to: how to switch bbpress template?Hi @tarao,
I don’t think you can obtain this without coding.
A theme is set for the whole of WordPress, including bbPress. So I suppose you would need to have 1 theme, and in that theme depending on the forum you are in, you could have different styles.
In reply to: Noidex metatag to groups of pages@process_of_illumination, Is your forum public? Or could you somewhere grant me access?
I would need to check what you exactly mean with ‘Category Archives’ and ‘Tag Archives’@makingcircuits,
Really? I’ll check!
If you could eventually post it on the support forum of the plugin https://wordpress.org/support/plugin/bbp-move-topics because this is not really bbPress related.UPDATE: You have bbPress running? I was probably able to simulate the error.
Thanks!
In reply to: Noidex metatag to groups of pagesThat should be the correct functions.php, yes.
As the theme is not open sourced, I cannot see how the different archives and pages you mentioned are setup. If they are really bbPress pages, then the above should at least add the meta tag when looking at the source of the html page.You could also try (make sure to copy it from here on the forum, not from an email that you get):
add_action( 'wp_head', 'casiepa_add_noindex' ); function casiepa_add_noindex() { if ( bbp_is_topic_archive() || bbp_is_forum_archive() ) { wp_no_robots(); } }
Maybe have the theme author have a look at the above code and ask him to add an option in the theme?
In reply to: Comment Form does not show up below correct commentHi @richterd,
Would you mind create this bug in trac (https://bbpress.trac.wordpress.org/newticket) ?
Thanks,
Pascal.@swagataminnovations as there are no changes to bbPress 2.5 , there was no need to update anything to that plugin, but you are right that it seemed very old.
Updated now 🙂
In reply to: bbPress 2.6.0 Release Candidate 5RC5 rebuild and available on https://downloads.wordpress.org/plugin/bbpress.2.6-rc-5.zip and also from https://bbpress.org/download/
I don’t think there is an immediate option for that, but I normally display the fressness, so it will say ‘5 minutes ago’ and ‘1 hour ago’. It’s a different view on your issue 🙂
In reply to: Export/ImportFirst of all, for the export/import, consider the v2.6 of bbPress as exporting and importing has been improved. It’s a release candidate but very stable: https://bbpress.org/download/
To export: Tools > Export and select forums, topics and replies
To import: Tools > Import and choose WordPress@haddlyapis, no, bbPress should follow the WordPress settings.
So not really sure what would have caused this…