If it is there then that is when you are going to use bbPress hooks and filters. Since I see how you are doing it, only thing I can suggest possibly filtering the topic index shortcode, using a custom template for the layout, and just listing the last few replies right under. I am sure what you are doing is possible though. Try to learn the best you can from bbPress’s code and create the functionality you want.
I think as far as wordpress can go is, but you have to create a custom folder in the uploads directory.
<img src="/wp-content/uploads/images/image.png" />
And possibly this if you have the images in your theme.
<img src="/wp-content/theme/images/image.png" />
You have to have all these images on your site for it to work.
It might be possible to change the image source, but it might depend on how you are sending this data to bbPress.
Download this bbpress.php file and put it into a child theme and you would get full width forums.
https://gist.github.com/robkk/20f37b09c57a6d9c1f94
After some digging it looks like most of the functions I’m looking to use outside of the bbpress framework are in includes/forums/functions.php and includes/replies/functions.php.
Hi
http://newslopedy.com/forums/
Ive created this new forum with bbpress. So its about what we most think and research on the net. The categories are simple.
Please give your feedbacks.
Yes. Outside of the bbpress framework I made a custom page which shows a threaded version of the forum: http://www.utehub.com/forum-threads/.
I’m adding reply as a modal window in this page, and want to use the bbpress reply DB insert queries for instance. Also will use bbpress new post queries… Sorry it is so hard to explain.
Basically it’s a bbpress forum view with post and reply functions, but outside of the bbpress framework.
Tell me exactly what you are trying to do. It kind of sounds like you just want to borrow code from bbPress and use it somewhere else.
Are you trying to create a function that is related to the bbPress plugin and other WordPress pages??
It depends on what you are looking for. There are plugins for all types of different captchas.
Math Captcha
Google noCAPTCHA reCAPTCHA
Honeypot (Hidden FIeld)
Questions on Registration
There are various other captchas that are there too.
https://wordpress.org/plugins/search.php?q=bbpress+captcha
If you are looking for a plugin that I think is the best out the types that I listed, pick one and I will recommend a plugin that I think is quite good to use in conjunction with bbPress.
Oh yeah no problem.
Here is a couple things I found when visiting your site.
The first item in your forum index is a little off because of the bbPress breadcrumbs.
Adding this CSS will help.
div.bbp-breadcrumb {
width: 100%;
}
There is an issue with the Freshness column text not really displaying right.
#bbpress-forums p.bbp-topic-meta {
text-align: inherit;
}
1.
Would a user Login and Registration mechanism created by me for my WordPress site also work for the bbPress forum within that site?
Yes, bbPress is integrated with WordPress.
Would a participant-level user logged into my WordPress site be able to see the back-end?
Yes they can, but they usually can only edit their own profile. Moderators can moderate topics and replies in the backend too. Since their are different roles for WordPress and bbPress, you are able to have more flexibility with how you want to users to contribute to your site.
Can I restrict him only to viewing the front-end
You can disallow them from being in the backend by using a plugin like WP Admin No Show
3
Would plugins, like ‘Profile Builder‘, for simplifying the creation of WordPress Login and Registration mechanism also work for bbPress?
It should work fine with bbPress.
Might need some help from @netweb since he is part of the polyglots team. I am not that familiar with the translating process yet.
You may need to make a post on the polygots page to notify them that you have a bbPress project translation and where to submit the translations, I am sure they will be able to help.
https://make.wordpress.org/polyglots/
You may be able to just contact your team here to see if they can also help you.
Contact
You may have to edit the translations here, and just wait for the team to approve the strings.
https://translate.wordpress.org/projects/wp-plugins/bbpress/stable/fa/default
translate.wordpress.org (GlotPress)
Hi,
1. Would a user Login and Registration mechanism created by me for my WordPress site also work for the bbPress forum within that site? What I mean is, if a visitor user with ‘participant’-level permission registers with and logs into the main WordPress site using the user registration and login pages of the WordPress site created by me, can he also then go to the bbPress forums in that site and create new topics / post messages there? Or do I need to create a separate user Login and Registration mechanism for the forums? Can I create a separate user Login and Registration mechanism for the forums?
2. Would a participant-level user logged into my WordPress site be able to see the back-end? Can I restrict him only to viewing the front-end, ie. the published pages only, and commenting in my articles (and perhaps create topics in bbPress forums as mentioned above)?
3. Would plugins, like ‘Profile Builder‘, for simplifying the creation of WordPress Login and Registration mechanism also work for bbPress?
My wordpress version: 4.3.1, bbPress version: 2.5.4 (don’t want to update bbPress at this moment).
Please help!
Thanks.
The catch is I’m creating pages outside of the bbpress framework, so will the functions still work?
@reminisce32
I fully agree with Robkk. The query should only be used as very last resort. The purge/repair is really doing all the steps one after the other. The query might leave some small traces in your database.
@hayleyadanner
Under the green top bar on this page, you will find a grey bar with your login details to the right. On the left of the grey bar you should see ‘bbPress.org’. Hover over it and you should see ‘New topic’.
Pascal.
Hi,
If you look for features image, I did not try it myself yet, but somebody seem to has found something:
https://wordpress.org/support/topic/new-post-featured-image-section-not-showing-after-bbpress-code?replies=2
Hope it helps.
Pascal.
It should just be like customizing the bbPress templates, placing it in your theme will replace the plugins bbpress-functions.php file.
I created a new page, I added the shortcode, I choose the template with no sidebar on the page I created, and bbpress just ignores it completely. I also tried a suggestion in another post about adding code to the style.css but that didn’t work as I was never very good with css. The wordpress theme I am using is called point and can be found here: https://wordpress.org/themes/point/
If anyone could perhaps nudge me in the correct direction I would appreciate it, thanks.
You need custom code. This is the custom code you will need to display it in your forums. Place it in your functions.php file, bbpress-functions.php file, or in a functionality plugin.
function rkk_mentionname_in_bbp() {
$user = get_userdata( bbp_get_reply_author_id() );
if ( !empty( $user->user_nicename ) ) {
$user_nicename = $user->user_nicename;
echo "@".$user_nicename;
}
}
add_action( 'bbp_theme_after_reply_author_details', 'rkk_mentionname_in_bbp' );
add_action( 'bbp_theme_after_topic_author_details', 'rkk_mentionname_in_bbp' );
@mei-ling
Thanks for sharing!!
This is exactly like what I said earlier. I will need to check this out and see if it needs more improvements in the code, and create a patch for bbPress if in the ticket.
Hi @robkk. Actually I didn’t check that, sorry. The project is basically a bbpress project. And I had to set it enable all the time in order to develop.
I asked the IT guy to create a clon of the page in another host and it’s working fine as far as I can see. So, I’d leave this here being a hosting issue.
Thanks a lot for the replys.
Hi
After two months, I have translate bbpress to the Persian language. How can I send it to you to be add in the core of translations?
i want to be your representative like wp-persian.com for wordpress.org .
Regards , Hamed .
I’m doing that with the template files already, which is great. So do I need to call the bbpress-functions.php file with my custom page or will it load automatically?
Hello,
I’m working on an application what communicate to bbPress using RESTful API. I’m struggling to find an equivalent function that would output the nested/threaded topic replies into a data structure such as array or JSON format. I see that bbp_list_replies() does just what I wanted, but rather than putting the result inside a data structure, this function displays the output as HTML data. Is there a function which will accomplish my description above or is this something I’ll have to write up?
Many thanks.