Forum Replies Created
-
bbPress uses WordPress’s user profiles code, so any new fields you add to the dashboard profile (with a plugin or otherwise) should be mirrored in the theme. If you need an easy GUI to create profile fields, try BuddyPress.
There are a bunch of examples on how to do this with WordPress. Follow those instructions and you should be fine.
In reply to: Parent Forum ID #?https://codex.bbpress.org/shortcodes/
To get the required numerical ID for $forum_id, $topic_id, $reply_id and $tag_id you will need to visit your /wp-admin/ section and either by editing the post or by hovering your mouse over the applicable forum/topic/reply/tag post type you will see a numeric ID for that post eg. /wp-admin/post.php?post=47
In reply to: Problems Editing BB Press Forums Page. Please helpOk… I think I follow now, take a look at the following thread, it is a good example of customizing the bbPress templates to have the forum layout like a phpBB or vBulletin format.
I have created a bbPress starter theme with a phpBB look and feel
In reply to: Problems Editing BB Press Forums Page. Please helpShortcode docs are here https://codex.bbpress.org/shortcodes/
In reply to: Order of TopicsThis should work…
function custom_bbp_has_topics() { $args['order'] = 'ASC'; // 'ASC' (Ascending), 'DESC' (Descending, Default) return $args; } add_filter('bbp_before_has_topics_parse_args', 'custom_bbp_has_topics' );
In reply to: Import from phpbb to bbpress – robot id shiftingSomeone else here has done the import/conversion when using
wp-united
, here it is, should be some good tips for you: https://bbpress.org/forums/topic/phpbb3-import-incomplete-and-switches-authors/Also https://codex.bbpress.org/import-forums/ & https://codex.bbpress.org/import-forums/phpbb
In reply to: Any suggestions for redirects after mingle import?@kvr28 Glad you got it sorted and thanks for posting your follow up 🙂
In reply to: Printing threads (WP 3.8.1, bbPress 3.5.2)To achieve this you would just make an alternate CSS stylesheet based of the main bbPress stylesheet and enqueue it as part of your theme.
You’d simply use
display: none
for the bits you don’t need.<link rel="stylesheet" id="bbpress-print-css" href="http://example.com/bbpress-print-css.css" type="text/css" media="print">
In reply to: Guide for making bbpress not so unusably slow ?bbPress 2.6 is also focusing on performance issues that we have found and will improve it’s performance, personally I don’t find it very slow at all, look at this site for a perfect example, that said we have found a few tweaks.
In reply to: Any suggestions for redirects after mingle import?See this thread on how one user did it for SimplePress:
Also a search with a few of these keyowrds:
mod_rewrite
,phpbb
orvbulletin
at Stack Overflow will give you some good examples to go by: http://stackoverflow.com/Keep the
forum root
andforum
slugs different.i.e. Name your page
forums
, useforums
as your forum slug and your single forum slugforum
In reply to: Still no visual editor?@stagger-lee I just tested the code from https://codex.bbpress.org/enable-visual-editor/ and it worked fine.
You could also try the following as a plugin, it has options to enable the full editor, though it sounds like you don’t want this so don’t enable it.
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
In reply to: max queries because of entry of forums???I would find a new web hosting provider, you should be able to find a provider with a vast improvement on the amount of database queries for that same price.
Sorry, this feature is not available in bbPress at this stage, also this is the first time I have ever heard anyone ask for such a feature.
In reply to: max queries because of entry of forums???This I would say is an issue for your web hosting provider and has nothing to do with bbPress or WordPress.
Contact them about upgrading your plan for greater database queries per hour and/or bandwidth.
In reply to: Edit topic reply, changes post order@dzpoa Are you using this with
threaded replies
enabled on your site?function custom_bbp_has_replies() { $args['orderby'] = 'ID'; $args['order'] = 'ASC'; return $args; } add_filter('bbp_before_has_replies_parse_args', 'custom_bbp_has_replies' );
In reply to: Freshness Date Format@synaptic It’s not always obvious but the links in your post that link to old discussions or sites (which I just edited) regarding the old ‘standalone’ bbPress and not the current bbPress v2.x plugin, circa anything over 2-3+ years of age won’t be relevant.
As to meeting some kind of demand quota, bbPress v2.x Plugin is sitting at 1,125,146 downloads as I write this, so whatever the magical formula is it would appear it has not reached tipping point.
Edit: That said, has anyone tried the code in the link you posted?
http://wordpress.stackexchange.com/questions/77441/how-to-edit-bbp-forum-freshness-link-formatIn reply to: bbpress integrate to my custom themeThe reply to your stackoverflow post is probably the best advice I’d suggest you follow.
In reply to: overwrite functions with theme's functions.php@nicmare To remove the separator:
add_filter('bbp_before_list_forums_parse_args', 'nicmare_bbpress_list_forums' ); function nicmare_bbpress_list_forums() { $args['separator'] = ''; return $args; }
A good explanation for
bbp_get_topic_admin_links
andbbp_get_reply_admin_links
is here:In reply to: How to filter an arrayThis is what you want for the above:
function hide_forum_counts() { $args['show_topic_count'] = false; $args['show_reply_count'] = false; $args['separator'] = ' '; return $args; } add_filter('bbp_before_list_forums_parse_args', 'hide_forum_counts' );
A full example of all the
bbp_list_forums
arguments to use either in a custom function or a plugin https://gist.github.com/ntwb/3797945bbPress actually goes looking for various templates to ‘wrap’ our templates in:
In this order:
–plugin-bbpress.php
–bbpress.php
–forums.php
–forum.php
–generic.php
–page.php
–single.php
–index.php
bbPress will go through each of these from top to bottom and use the first one it finds to wrap the templates in from your current active theme.
In reply to: [REQUEST] Quote, multi-quote, and signaturesWe’ve started tracking some plugins we like here https://codex.bbpress.org/feature-plugins-tracking/
We have no specific plans to include any of these in bbPress at this stage but things can change 😉
In reply to: Last post date-time instead of FreshnessI’m not sure what the original motivation was for this decision but it has been this way now for over 7 years.
In reply to: bbPress 2.5.3@sooskriszta It’s here and your same topic ~2 years ago is here. For some reason it had been marked as spam and is now fixed.
In reply to: Last post date-time instead of FreshnessAs per your post ~2 years ago https://bbpress.org/forums/topic/last-post-date-time-instead-of-freshness/ and the Trac ticket you created:
https://bbpress.trac.wordpress.org/ticket/2031
Valid, though easily handled in a theme; there are functions to support this if you want this on your own site.
Closing as wontfix. If it turns into a popular request, we can reopen and revisit this then.