Published on February 13th, 2012 by tourdecartes
This bug only affects the forum on my site nothing else, so im positive that it comes from bbpress.
On a couple of my forums, only some of my topics/posts are showing and users cannot create new topics. It’s like the page doesn’t load completely cause i cannot see the sidebar of my site either…
other topics/posts are showing perfectly (no sidebar pb either). Users can post and everything.
However, everything is available through the admin panel.
I tried to twitch things earlier but it got things worst: for an hour 3 of my forums stopped showing on the “/forums” page. (and now its back for some reasons…)
Would anyone knows why this issue happens? and why the forums/topics/posts reappears sometimes after disappearing (and sometimes not)…
It’s a bit difficult to explain so here is the exemple:
Ex: http://www.tourdecartes.com/forums/topic/recherche-dun-mouvement : this post doesnt show anymore – only the header and the title shows.
http://www.tourdecartes.com/forums/topic/probleme-pour-labonnement : this one works perfectly.
Any help would be greatly appreciated.
Manu
Published on February 13th, 2012 by Hard Seat Sleeper
I assumed that the new plugin version of bbpress would share tags and rss with the host wordpress install. Turns out it’s not the case as far as I can see — bbpress has it’s own list of topic tags separate from the main wp install, and posts do not go to the wp rss, but rather /forum/rss.
Is there any plan to integrate these someday?
Published on February 13th, 2012 by eric83
Why does the main page on my forum show the title of the last forum made? Shouldn’t it just say “forums” or whatever the page title is?
Published on February 13th, 2012 by Socialboard.in
<?php if (bb_current_user_can(‘moderate’)) { ?>
a href=”/bb-admin/”><img src=”http://icons.iconarchive.com/icons/harwen/pleasant/24/Settings-icon.png”></a
<?php } ?>
Did not work.
How to handle?
Published on February 12th, 2012 by Socialboard.in
<p class=”login”>
<?php printf(__(‘Welcome, %1$s!’), bb_get_profile_link(bb_get_current_user_info( ‘name’ )));?>
<?php bb_admin_link( ‘before= | ‘ );?>
| <?php bb_logout_link(); ?>
<?php if (bb_current_user_can(‘write_posts’)) : ?>
<?php pm_fp_link(); ?>
<?php endif; ?>
</p>
How do I put pictures instead?
Published on February 12th, 2012 by VancouverDan9
Hello everyone
new to all this so appologies if this is very simple and obvious to fix
Basically I installed the bbpress plugin yesterday and got it working, then this morning I ran the auto set up functions after having already made some pages so I linked them via the options.
Due to the auto page maker it made extra pages that i wanted to delet and thus did so on the page editor. however the pages I linked didnt show front end but did back end???
also pages I deleted still showed front end??? when clicking on them the browser just went blank.
so now reaching this impass i decided to uninstall that is when i got this message
Fatal error: Class ‘BBP_Theme_Compat’ not found in /hermes/waloraweb043/b1820/pow.pressstartvgca2/htdocs/wordpress/wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/functions.php on line 32
and now when ever you go to the site this is what you see
www.pressstartbc.com
I dont know how to get around this as I cant log in etc
do i have to go back to my server and just take worpress off and reinstal the whole thing?
All help much appreciated
thank you in advance
Published on February 12th, 2012 by residentmeevil
Hey everyone,
I’m currently building a wordpress theme and want to integrate BBPress within it. However, I’m having a lot of trouble just getting my head around some basic principles!
1) Once installed, how do I edit the Buddypress template files? How can I adapt my current, custom theme so that I can alter these template files?
2) How does a user register?
3) How can I create a log in system for my users? Is this even possible?
Thankyou for your help! I’m really struggling here!
Published on February 12th, 2012 by solsikkehaven
load_text_domain is used in bbPress instead of load_plugin_textdomain – codestyling localization plugin reports….some filter and actions won’t be executed anymore…. “please contact the author”
Done.
Published on February 12th, 2012 by dudd, médecine blog
hi,
in the loop-single-topic.php
this line will show the last reply author link with avatar
<?php bbp_author_link( array( ‘post_id’ => bbp_get_topic_last_active_id(), ‘size’ => 14 ) ); ?>
i need to change this to only show the author link without avatar image?
Published on February 12th, 2012 by dudd, médecine blog
hi,
please how can i add a new loop template ?
explication :
in :
<?php if ( bbp_has_topics() ) : ?>
<?php bbp_get_template_part( ‘bbpress/loop’, ‘topics’ ); ?>
<?php else : ?>
it load the template : loop-topics.php
exemple i need to do a copie of this template : loop-topics2.php
i will use :
<?php if ( bbp_has_topics() ) : ?>
<?php bbp_get_template_part( ‘bbpress/loop’, ‘topics2’ ); ?>
<?php else : ?>
but i do not work !