Forum Replies Created
-
In reply to: where is the problem? forum on wp page
I suppose the first echo should read:
echo "<tr><td>". $forum_id." > ".$result->forum_name."</td>";
By the way, I suggest you to use double quotes for html tags (like you would do normally) and single quotes for php commands, unless you include vars in them. Like this:
echo '<td class="num">';
More details here.
In reply to: bbPress plugin September 15?Yes, I read that, but since there are still a couple of tickets left I supposed the September 15th date was quite unrealistic right now…
In reply to: bbPress plugin September 15?Actually 1.2’s milestone says:
Due in 4 months (12/31/10)
In reply to: Forking bbPress: First DraftKevin, I’ve eagerly read your pdf and I promise you’ll hear from me soon, though my upcoming degree is sucking me all my free time…
Your idea definitely deserves more attention, man!
In reply to: Search drop down unexpected behaviourSorry, I did not specify I was referring to the trunk version of bbPress, which is not the one you find on the Download section.
In reply to: Search drop down unexpected behaviourIt’s a known bug, fixed in [2400] if I remember correctly.
In reply to: Show avatar of current userThose plugin are way too old!
I use:
if ( $avatar = bb_get_avatar( bb_get_current_user_info( 'id' ), 80 ) ) {
echo $avatar;
unset( $avatar );
}In reply to: bbPress 1.1 – Maybe Soon!Seems like we finally run out of tickets: candidate release date?
In reply to: Nicer permalinks plugin messes up the forum sitemapI’ve just found and fixed the bug in my plugin: I’ll upload a new version within minutes.
In reply to: Nicer permalinks plugin messes up the forum sitemapBoth plugins? Can you link me the one I missed, please?
In reply to: Nicer permalinks plugin messes up the forum sitemapHi Ricardo!
“Recent” users comments from bbPress Sitemap Generator plugin page say:
This plugin does not work with bbpress 1.02
Tried everything… Still didn’t work.
This plugin horrible slows down the forum performance
I cannot get this work
This really needs an update!
I strongly suggest you to use another sitemap generator plugin first; if you still will experience problems, please post here the list of the plugins you’re using and the bbPress version you’re on, and I’ll try to help.
In reply to: bbPress plugin September 15?Maybe when you make posts about bbPress on other websites, you could do us a favour and make a little 2 line forum post on this website too
I agree: after all, isn’t this supposed to be the main bbPress website?
In reply to: bbPress 1.1 – Maybe Soon!Is 1.1 coming out soon?
At the moment we still have 4 tickets to close.
I suppose there will be a beta release in late autumn (I hope so), since more testing is definitely needed!
Blanking
.htaccess
and re-setting permalinks is quicker and less error-prone, imho.In reply to: Rearrange Profile PagesSorry, no hint about that…
In reply to: Rearrange Profile PagesSorry, I forgot to mention I’m using 1.1-alpha…
Try this, from 1.0.2: http://pastebin.com/Zmkh0rRv
In reply to: Hot Tags Filter/EditorThere’s a nearly-closed ticket about this: https://trac.bbpress.org/ticket/1243
In reply to: Rearrange Profile PagesIn reply to: can admin execute php code in post?@mr_pelle like support forum , why not update this plugin with extra features of bbPages the author of this plugin is no more active in this forum.
I do not see how bbPages would be related to Support Forum(s)…
In reply to: can admin execute php code in post?Maybe PHP is not added soon enough to actually be executed by the web server.
This is what happens in WordPress, I suppose the same is valid here.
In reply to: Rearrange Profile PagesYou should tell me the exact order you’d like blocks to be displayed.
In reply to: Rearrange Profile PagesEdit
profile-edit.php
and move the<fieldset>
blocks around as you wish. Note that you must move the display conditions too, so actually the first block are lines 13-16, second are lines 18-23, third are lines 25-34.In reply to: Tag for fetching forum name from a topic?You may retrieve topic parent forum id using
$topic->forum_id
and then get its name usingget_forum_name( $topic->forum_id )
.In reply to: Better Profiles….Do you want to customize the template for the upload avatar page? Edit the
bavatar-profile.php
file that comes with the plugin. It has an action inside, if I remember correctly, which hook you can modify.In reply to: Better Profiles….bavatars adds a tab to your user profile, next to Favorites, but since your forum template is custom, I do not know exactly where you have to look at…