Thanks, Robin! Now I feel much more confident and I will start my first WordPress project. Since I am a starter, but still I want to insert nice pictures in my site, could you please suggest some decent freeware alternative of Adobe PhotoShop?
I have been using this piece of code to call the default bbPress breadcrumbs.
/**
* Filter to call default bbPress breadcrumbs
*/
add_filter( 'bbp_get_breadcrumb', 'myfix_bbp_get_breadcrumb', 1, 3 );
function myfix_bbp_get_breadcrumb($trail, $crumbs, $r){
// This will remove wordpress-seo filter to disable bbPress breadcrums by default
remove_all_filters("bbp_get_breadcrumb",10);
return $trail;
}
I want to put a button "thanks" for each post in the user profile and the Times Appears "Thanked"
but I find this plugin or shortcode, or a way to do
example:

I found this plugin: https://wordpress.org/plugins/bbpress-like-button/
but does not show the data in the public profile …
although the plugin either to pay, no matter
It is now important for a forum
help!
kind regards
Can I build a website with WordPress without coding?
I ran my first website for two years without needing coding. SO yes is the answer
All membership plugins are individual, so cannot dierctly say what your does.
Cancelling a membership plugin does not usually delete the user in the wordpress database, so their posts should remain with their name against them.
If it does, then I’m not sure what will be displayed.
Manually deleting a user you get asked whether you wish to delete the posts or assign then to another user
no problem
set up your ‘cars’ as categories
Dashboard>forums>new forum. Call it say GM then on the right hand side you’ll see ‘Type’ change this to category
Save this and exit.
The in
Dashboard>forums>all forums you have your forum list. For the GM forum, hover over the ‘edit’ option, and at the bottom of the screen you’ll see something like
http://www.mysite.com/wp-admin/post.php/post=123&action= edit
Make a note that 123 equals the GM forum category – you’ll need this later.
The create your sub forums as forums eg Buick, Cadillac, and on the right and side make these have a parent of GM
Then create a wordpress page called say GM, and put the shortcode
[bbp-single-forum id=123]
where 123 was the post number of the category forum you noted above
Then just add this page to your menu
Hi, ive had problems from my users that avatars are not showing in the forums. I checked it out & it seems theres a backslash being removed from the URL to the image. I had to remove:
add_filter( ‘bbp_get_topic_author_link’, ‘stripslashes’ ); from the filters.php and it now all works fine. Problem is my theme is in source control and surely editing core files cannot be correct, right?
This is in my loop-single-topic.php file and this is what displays the name and avatar:
<span class=”bbp-topic-started-by”><?php printf( __( ‘Started by: %1$s’), “”.bbp_get_topic_author_link( array( ‘size’ => ’90’))); ?></span>
Is this a known bug and is there a better way to fix this? I am using the latest BBpress and WordPress 4.0. Avatar plugin is WP User Avatar
Thanks
Cheers
Here is the resultant SQL query for your code above:
SELECT SQL_CALC_FOUND_ROWS wp_posts.ID
FROM wp_posts
INNER JOIN wp_postmeta ON wp_posts.ID = wp_postmeta.post_id
INNER JOIN wp_postmeta AS mt1 ON (wp_posts.ID = mt1.post_id)
INNER JOIN wp_postmeta AS mt2 ON (wp_posts.ID = mt2.post_id)
WHERE 1=1
AND ( ( YEAR( post_date ) = 2014 ) )
AND wp_posts.post_type = 'topic'
AND (wp_posts.post_status = 'publish'
OR wp_posts.post_status = 'closed'
OR wp_posts.post_status = 'private'
OR wp_posts.post_status = 'hidden')
AND (wp_postmeta.meta_key = '_bbp_last_active_time'
OR (mt1.meta_key = '_bbps_topic_status'
AND CAST(mt1.meta_value AS CHAR) LIKE '%1%')
OR (mt2.meta_key = '_bbps_topic_status'
AND CAST(mt2.meta_value AS CHAR) LIKE '%2%')
)
GROUP BY wp_posts.ID
ORDER BY wp_posts.post_date DESC
LIMIT 0, 15
I think you are hitting a known limitation of WordPress at the moment nesting queries, take a look at Boone’s posts on the improvements coming to WordPress 4.1:
Meta, Date, and Tax Query improvements in WP 4.1
…classes currently accept a ‘relation’ parameter, which allows multiple query clauses to be joined with AND or OR. So, for instance, you can query for: posts that are in the ‘Boone’ category AND have the tag ‘Awesome’ AND do not have the term ‘Raphael’ in the favorite_turtle taxonomy. But this syntax only allows for so much expressiveness: you can’t mix AND and OR, and you can’t group clauses. These limitations make it difficult to use these queries in support of complex content filtering…
Then take a read of the follow up post explaining what has happened since that first post, I haven’t had the time to look at how this changes affect bbPress, they should not break bbPress, but these will be something we will take a look at to a) Ensure bbPress is not affected by these WordPress 4.1 updates and b) How we can leverage these improvements in future versions of bbPress.
Update on Query improvements in 4.1
I really need some help, i am using a plugin that allows me to make custom wordpress roles and give them permissions to make topics and stuff in the forums… I want to make it so the text that is displayed on the forums like “Participant” or “Keymaster” are changed to the text of the users wordpress role ie. “Participant” becomes “New Member” so that i can make a rank identification system.
I could have;
New Member {Same as Participant permisstions}
Full Member {Same as Participant permisstions}
Senor Member {Same as Participant permisstions}
Moderator {Same as moderators permisstions}
Administrator {Same as keymasters permisstions}
Ect…
The plugin i am using is Capability Manager Enhanced
hi, sorry,i am new to bbpress, we just set up a wordpress for our support center with bbpress installed for Q&A purpose(not as a forum). that’s why we wondering how to show topics in bbpress home page instead of forums(to make it more like a Q&A and save the hassle) or even create topics without forums.
your help is really appreciated!thx
Hi, there!
I am new to WordPress and I’m wondering if i need any text editor like Notepad++ in order to create a website. This might be a dummy question, but I really need to know. Can I build a website with WordPress without coding? Thanks in advance!
unfortunately bbshowcase was for the standalone version 1 of bbpress and doesn’t work with the wordpress plugin version.
As suggested, I copied all the template files inside bbPress plugin directory to my active theme
Not sure where you got that from. Only if you want to alter templates do you need to copy templates to a bbpress directory, and then only those you wish to change.
Also, how do I remove Topic: and Forum: slug at the title of the page?
Can you specify exactly what you want to remove – a screenshot would be good
sorry wp4.0 changed the way default permalinks worked, and this has broken bbpress child forums, which is I suspect your problem.
There is a trac ticket for this with WordPress.
The interim fix is to go to pretty permalinks (which you say you don’t want to) or only have forums at the top level. In theory this will be fixed in 4.0.1 whenever that comes out.
@mnhfile
also try to test out on a local development area like WAMP or MAMP
install divi , bbpress, and then add the file to your bbpress folder in your divi child theme.
MAC
http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-locally-on-mac-using-mamp/
PC
http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-on-your-windows-computer-using-wamp/
if you cant even get it on localhost , contact elegant themes support they also run bbpress on there support forums maybe they can help too.
@atfpodcast maybe there is some setting that you accidently checked that might have caused the issue.
i just tested off of localhost and just using default settings in everything.
try testing on a local development area and see if it works
PC
http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-on-your-windows-computer-using-wamp/
MAC
http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-locally-on-mac-using-mamp/
Does this help? You should be seeing the “Tools” section in WordPress 4.0 most definately.

The bbPress project along with BuddyPress and WordPress is testing out Slack as our main real-time communication platform, replacing IRC chats for developer related discussions.
If you are a current contributor to bbPress or would like to start contributing and help with the development of bbPress then this is the place to come and have a chat.
A brief summary is here: https://codex.bbpress.org/participate-and-contribute/
Full setup details and how to request an invite to link your WordPress.org account with a Slack.com account are here:
https://chat.wordpress.org/ https://wordpress.slack.com/apps
Note: This is a not a new support channel or forum for bbPress support.
Yes, I understand. But as you know, when you get truncated messages, there is a lot sensitive information. Ips and port etc.etc. But I have a lead right know of what it can be.. I’m using google apps so. I’ll be back with this if I found anything. The strange thing that is happens only with bbpress, not buddypress or wordpress.
I was doing some testing on forums with test posts. After I deleted them all from the admin panel and used the repair tool within WordPress it shows that there are “No Topics” in all the forums but the old forum topic/posts counts are still there. I tried clearing cache everywhere including browsers but the Topics/Post counts in the columns still exist even though there’s nothing inside the forum.
Sorry for making three topics on same issue because I understand it differently.
I have latest wordpress version 4 and I am using divi theme with drag and drop page builder.

When I say tabs it means “subforums” and “irrational legacy games”.
Are you talking about robin’s forum-loop.php file if then I don’t know how to use it…
Can you tell me how to make headings/tabs like “subforums” and “irrational legacy games”
there is this which add captchas to the reply and topic form
https://wordpress.org/plugins/bbpress-recaptcha/
and there is this which integrates with bbpress
https://wordpress.org/plugins/wp-math-captcha/
You will find it is a conflict between your server time and the WordPress time zone setting, contact your web host to find out what time zone the servers clock is set to, then update your WordPress time zone to match.