Inside the bbPress folder, you find the themes. Just upload and overwrite the previous files and you will be good to go.
The site you mentioned is the deault blue with a little edit to the header.
It is still in the process of being developed, you can keep an eye on the progress here. Though I think when it is near to be being ready for a few people to test it it might be added to the plugin repository over on WordPress.org.
The last estimate was that it might be ready for some initial tests in a month – but don’t expect a full release for several months as yet.
I’ve been waiting for a bbpress plugin that I can upload to my install of wordpress to add bbpress as a forum the same way you install simple press.
Thank You ashfame. I have been reading alot on bbpress trying to get answer’s and it seems that there is not much information that has been volunteered on solving some of these minor problems. I use google in trying to find much of my information and I keep getting 2 main website’s. This one (bbpress.org) and bb showcase.org.
I was reading on one thread were it stated not to upload any themes in the bbpress template file that I had downloaded and to make my own file path (my-templates). Well when I decided after a couple of days of problems to go ahead and upload file’s in the bbpress templates location the themes started working.
I had also changed the css on the Kakumei to Kakumei-blue because I was trying to get a certain look, but them disturbed the css which then altered the template. Also I can not find a download link to either of the default template’s for some reason? If someone could help me this is the look I would like to have http://www.seanbluestone.com/forums/
I love the simple and easy flow of this forum and that is not what either one of my default template’s looked like when I received them.
Also on another note: Can anyone help me out with my forum logging me out of wordpress when I’m logging into bbpress? I have checked all of the wordpress Integration, cookies, and blog url’s and I even changed all of them in my default template and then in my bbpress default template as it was suggested on another site that had a tutorial.
Hope this is not too much and it makes since.
Thank You for the help.
If you install bbPress integrated with WordPress, the installation fails with a message “Your installation failed with some minor errors.”
Looking at the error log, the message was:
“Forum could not be created!”
I dug through the code, and found the problem, in bb-admin/includes/functions.bb-admin.php, in the function bb_new_forum:
// Expects forum_name, forum_desc to be pre-escaped
function bb_new_forum( $args ) {
global $bbdb;
if ( !bb_current_user_can( ‘manage_forums’ ) )
return false;
bb_current_user can ONLY return true if you are currently logged into WordPress as an administrator. I recommend changing the ‘if’ condition to:
if ( !BB_INSTALLING && !bb_current_user_can( ‘manage_forums’ ) )
Hola, he finalizado la traducción completa al español de la versión de bbPress 1.0.2. Por completa me refiero a la traducción inclusive de esas frases que no tienen ningún sentido en español y deben ser interpretadas de otra manera.
De igual forma he revisado cuidadosamente la integración con el sistema, para asegurarme de que todas las palabras en los formularios y títulos tienen sentido con la tarea que realizan.
Es importante recalcar que la traducción ha sido realizada en lenguaje formal que por lo general contiene expresiones simples de entender por cualquier hablante del español sin importar los modismos regionales.
A continuación dejo los enlaces al fichero .mo y el catálogo .po. Si esta versión gusta lo suficiente puede que me dedique a mantener una traducción es_VE para las versiones futuras de bbPress que sean publicadas.
es_VE.po
es_Ve.mo
Saludos cordiales.
—
In English:
Hi, I’ve translated bbPress 1.0.2 completely into Venezuelan Spanish. By completely I mean, giving sense to those words we can’t translate directly into Spanish.
I have uploaded the .mo and .po files to my server, you can get it from the links below:
es_VE.po
es_Ve.mo
By the way, it’s formal spanish grammar so you can use it everywhere.
Bests regards.
I got it to work is was the path to the wordpress header i ha wrong with a silly typo, all good now
Isn’t ThemePress really, really old, and for previous versions of the software?
This ThemePress?
http://www.adityanaik.com/integratepress-part-i/
I have just started using bbpress and I would like the theme to look like the main wordpress theme ie use the header and footer. I came across themepress but when i installed it i get:
Fatal error: Call to undefined function get_header() in /forums/bb-templates/ThemePress/front-page.php on line 1
I am using the latest version of bbpress and wordpress ie wp 3.0.1 and bb 1.0.2
is there a better way to integrate the theme?
Yes, right, I’ve tried now.
WPms and bbpress will be best bet.
Go ahead, best of luck.
Hi there! I am having trouble a problem with my bbpress installation. I have installed bbpress and completed deep integration with wordpress. I have also installed the plugin at http://bbpress.org/plugins/topic/zaerl-wordpress-3-integration/. The forum is live at http://www.mendabrokenheart.net/forum
Unfortunately, it is not possible for people to register. When they enter their information, it returns the message “email is required”.
Can you please point me in the direction of any potential solution?
sorry didn’t see this
Possible to make certian forums not appear in latest discussion?
the core bit of info posted in this thread below. this worked fine for me with BBPress 1.0.2:
Just edit it to exclude whatever forum numbers you want and add it to the plug-ins folder.
<?php
/*
Plugin Name: exclude
*/
function filter_front_page_topics($where){
$exclude_forums=array ("13","19"); // enable this to manually specify specific forums by id #
// $forums = get_forums(); foreach ($forums as $forum) {if ($forum->forum_parent) {$exclude_forums[]=$forum->forum_id;}} // exclude ALL sub-forums
if ( is_front() ) {foreach($exclude_forums as $forum) { $where.=" AND forum_id != ".$forum." "; }}
return $where;
}
add_filter( 'get_latest_topics_where', 'filter_front_page_topics');
add_filter( 'get_latest_posts_where', 'filter_front_page_topics');
?>
…so if I install
WP + bbpress forum + a galerie plug-in….
i should arrive pretty close to having installed
WP + BuddyPress (turning off members blog, activity stream, groups) + a galleri plug-in
both these ways should arrive close to the same thing if i get it right ?
Hello.
I apologise for reopening this topic, but I have a question.
Is it possible to show a message to the users, after they have made their first post, letting them know that their post is being moderated?
If yes, how?
This is the plugin that I am using.
Is it based on the following principle? add_action('action_name','function_to_fire',priority);
I might be terribly wrong, so please bear with me.
Which in my case would mean that after this function mod_notification_new_post fires, my own function (say, notification_to_user) would go. So I should add_action('bb_notify_user', 'notification_to_user',9);
Then after these 3 actions:
add_action('bb_new_post', 'mod_notification_new_post',1);
add_action('extra_profile_info', 'mod_notification_profile');
add_action('profile_edited', 'mod_notification_profile_edit');
I should add the other one.
Say this would work, how can I have the user see the message in the (empty) box of the post that he has just made?
I hope that I haven’t insulted anyone’s intelligence with my question(s).
Thank you.
Bob
If you’re looking for the theme that is in use at wordpress.org, I don’t believe that is available anywhere.
You can find some themes here:
http://bbshowcase.org/forums/view/available-themes
You might also be able to use WP Mimic (direct download):
http://bbshowcase.org/themes/WPMimic.zip
hi
I want to give this theme for bbpress
http://wordpress.org/support/
thank 😡
I am having a huge issue with this as well. All I want is for my bbpress roles to match up with what their wordpress role is with s2member. (Deep Int)
I copied that code, but still their role in bbPress never changes, and it’s driving me nuts!
edit: Maybe because I’m trying to update users roles, not create news ones? They are all Level 1 now, but when upgrade to Level 2, I need their role to update in bbpress as well, same when then downgrade.
Any help would be greatly appreciated!!
This is my first try to translation.
Have tested on my own install of bbPress for couple times.
How do I submit it to the bbPress?(Can I?)
Sincerely.
Something is messed up. Kakumei blue is calling css of Kakumei and not of itself.
Overwrite your bbPress files with a fresh set and you should be fine
older post examples
Hiding Subforums’ Subforums from Subforum Pages
hide subforums on main page
Hiding Subforums’ Subforums from Subforum Pages
— They all do a good job of explaining how to hide the child accounts on the main page but now I need these child accounts to show up once you click on the parent accounts.
@jimgroom: I’m no longer developing bbPress themes so the project has been scratched.
@Moderators: Please close this thread. Thanks!
Hello everyone, I have installed bb attachments and I can see the files getting uploaded on the server but in the post I just get a blue square with a questionmark in it instead of the image and the links to the attachments doesnt work either.
Is there someone here who could help me with this issue?
Thank you very much
Tim