Published on March 23rd, 2009 by andersson
This is just a sanity check so I know that I’m not making something that is completely overkill.
If I’ve added meta on my posts, and want to get posts “order by” [meta_key], that’s pretty much not possible via BB_Query right?
My solution now, albeit not beautiful but acceptable to me since I’m the only user of it, is to add a column to bb_posts table and then send in the ORDER BY to BB_Query on that column. That works fine.
So the generic question in here is: can I or can’t I sort a fetch on meta key instead of columns in the post table?
using trunk of bbpress, fetched yesterday
Published on March 23rd, 2009 by
Hello,
Is it possible, or is there a plugin for that, to mark a best answer to the question of a topic?
Thanks in advance!
Olga S.
Published on March 23rd, 2009 by
Hello,
Is it possible to reconfigure bbPress topics URL? For example, I want to add a category name in front.
Thank you!
Olga S.
Published on March 22nd, 2009 by Null
If you have a complete new php file that acts like a new page, you can add it’s location with the below code, BUT I want to rename a existing php file. The problem is that its a filtered page: view.php?view=port. The problem is that this is still seen as view.php. How do I change this so that view.php?view=port is seen as a total new page so that the code below works and the location is added?
function bbport_location() {
if (bb_find_filename($_SERVER['PHP_SELF']) == "view.php?view=port"):
return "port-page";
endif;
}
add_filter( 'get_bb_location', 'bbport_location' );
function is_bbport() {
if ( 'port-page' == get_bb_location() )
return true;
else
return false;
}
Published on March 22nd, 2009 by
Hi,
I tried to instal it but in the first step appears this
Warning: cannot yet handle MBCS in html_entity_decode()! in /hermes/bosweb/web077/b771/ipw.erickcacao/forum/bb-includes/wp-functions.php on line 113
Sould I configure wp-functions.php?
Published on March 22nd, 2009 by
Hi there,
I am trying to find solution for following issue:
– Wordpres with a plugin extending registration (such as CYC, Register Plus, other user-field-extending ones)
– BBPRESS uses only the “basic” WordPress fields on the “Edit Profile” page
Now I want to enable the editing of the “custom user fields” from the wordpress plugin in the BBPRESS “edit profile” page
Any ideas? For now I am open which plugin to use in WordPress (CYC or Custom User Fields, …)
Help much appreciated, thanks,
PB
Published on March 22nd, 2009 by Ashish Kumar (Ashfame)
Hello there!
I used 2 local copies of bbPress. One for integration with WordPress and another one for developing the theme. I finished the work in their respective copies but when I used the theme in the integrated copy, I lost admin access again (had to use the fix admin access plugin) and now when the forum page is opened in the browser it says
“Fatal error: Call to undefined function bb_uri() in C:xampphtdocsjecforumsmy-templatesbbfameheader.php on line 56”
Now I don’t get it. Why the bbPress is not able to fetch the definition of its own function?
Any help will be highly appreciated. Thanks in advance!
Published on March 22nd, 2009 by
I can’t seem to find a function that returns the name and link to the parent forum of a topic in this loop on the front page
foreach ( $topics as $topic ) :
Does anyone know what the function is?
Published on March 22nd, 2009 by Eleeist
When I’m deleting a topic, it’s still appearing in Admin Panel -> Manage -> Topics, and when I click the name of the topic, it’s redirecting me to it, and it’s red (I can also undelete it)
And my question is: can I delete it permanently, that there won’t be any copies of it, and I won’t undelete it?
Published on March 22nd, 2009 by
I successfully set up the bbp yesterday, integrated with my wordpress. I installed bbp on the SAME database with my wp, but is another user name…
But all in all, they worked pretty well. The users on my WP can access and log into my bbp flawlessly. However, whenever a new user comes, and register through my bbp, there is not response for the register.php. After filling out the name and email, click send. Nothing happened.
Except for registration, everything else works perfectly.
PS: I cannot redirect my bbp register to wp…and I wish to keep it in bbp. I want to know why it didn’t work, since other things worked well.
Anyone has suggestion?
Thanks!