Published on February 13th, 2010 by bobtheman
I would like to start discussion regarding a single sign on feature, and developing integration for other platforms other than just wordpress “joomla, drupal, etc” in order to open up the usability of bbpress and be less restrictive than just supporting WP.
conversion methods and tools for both CMS platforms and forum software conversion “preferably from “phpbb, smf, vb, vanilla” to bbpress of course ..
any ideas and suggestions are welcome
Published on February 13th, 2010 by nakedpersonals
I used the default kakumei theme to create my own layout and everything works fine except for the following the “post_author_link,” and “post_author_title_link.” No matter what thread I have opened the tags always display the text “Anonymous Unregistered.” (example) I guess there’s sort of code that’s supposed to preface those tags, but I can’t figure out what it is. Any suggestions?
p.s. Don’t let the name fool you, my website is safe for work.
Published on February 13th, 2010 by nakedpersonals
…I’m new to BBpress, so I hope this isn’t a stupid question. (I can’t find the relevant code in any of my template files.)
P.S. my username/url is meant to be taken figuratively.
Published on February 13th, 2010 by greghalpen
hello,
I see that 1.0 bbPress isn’t ready, but I am trying to upload the version before that. It’s installed on the server, but when i go to the plugin page on my site, bbpress isn’t listed there?
It’s not showing up on my plugins list.
Any thoughts?
Published on February 13th, 2010 by bobtheman
Everyone is invited to the bbpress IRC gathering on
February 14th 2010 @ 7 PM EST
irc.freenode.net
#bbpress
If your not familiar with IRC, the easiest way to join the chat is to visit this link and pick a user name
http://webchat.freenode.net/?channels=bbpress
Some Topics Of Discussion:
Project Manager Appointment
Ground work for Project Roadmap
Release of 1.2 and future bug hunts
Published on February 13th, 2010 by drewva
I’m sure this would be a really useful feature for most forum administrators… “Read-only forums”
Can you add the ability to create read-only forums in the admin tools area? I know there is a read-only plugin for bbpress but it is no longer supported (last update was in 2008).
This would be such a great feature. I want to set up a forum topic that is informational for forum users, one that I don’t want users posting to.
Published on February 13th, 2010 by Dwenaus
does any one have _ck_’s email address. I want to hire her to convert one of her plugins to Buddypress. I figure she built it so she’d be the best one to convert it. my email is deryk[@] bluemandala.com. maybe just pass that on to her if you know her address. thanks.
Deryk
Published on February 12th, 2010 by ewimberley
When generating a dropdown menu, bb_get_forum_dropdown (from bb-includes/functions.bb-template.php) adds an extra quotation mark inside the select tag like this:
<select name=”forum_id” id=”forum-id””>
When it should be like this:
<select name=”forum_id” id=”forum-id”>
The offending line is right here:
$r .= ‘<select name=”‘ . $name . ‘” id=”‘ . $id . ‘”‘ . $tab . ‘”>’ . “n”;
To fix this, change it to:
$r .= ‘<select name=”‘ . $name . ‘” id=”‘ . $id . ‘”‘ . $tab . ‘>’ . “n”;
Published on February 12th, 2010 by
Hey,
I would like to have a forum with five topics on which people can reply.
But they shouldn’t be able to open new topics in the forum.
Is that possible?
Published on February 12th, 2010 by
Hey,
I changed this line in my theme:
<p><?php _e(‘Allowed markup:’); ?> <?php allowed_markup(); ?>.
<?php _e(‘You can also put code in between backtick ([…] ) characters.’); ?></p>
to this line
<p><?php _e(‘Allowed markup:’); ?><?php allowed_markup(); ?>`. <?php _e(‘ ‘); ?></p>
And then I got this error on the forum:
Warning: include() [function.include]: Failed opening ” for inclusion (include_path=’.:/usr/share/php:/usr/share/pear’) in /domains/lijstblanco.nl/DEFAULT/bbpress/bb-includes/functions.bb-template.php on line 45
So I changed it back, but the error remains!
Any idea what to do now?