Forum Replies Created
-
@bkno – @powerspawn is asking about bbPress 2.0, so those plugins won’t help him.
@powerspawn – Right now you’ll need to write a piggyback plugin for bbPress, that will add the read_private_forums capability to the roles that you want to have it.
In reply to: Blank pageInteresting. Looks like it thinks a function is missing, or some other plugin is interfering with the output of the page. Do you have any other plugins running? What version of bbPress 2.0 are you using?
In reply to: plugin beta2 Interesting server 403 error:Will be fixed in the next release.
Created a new default title length option, and set it to 80 as default.
In reply to: Updating bbP plugin Deleted my theme!!I can guarantee you with 100% confidence that a bbPress plugin update alone will *never* nuke any files outside of the
/wp-content/plugins/bbpress/
folder.When you update any WordPress plugin through the auto-updater, it deletes the plugin folder, recreates it, and puts the contents of the new version in there; that’s it.
In reply to: bbP 2.0 b1 – Intermittently can't post repliesHidden fields look fine to me.
What happens if you choose to include the forum base slug in your permalinks? Are you able to post then?
Is it possible that the content you’re attempting to post is the *exact* same as the content of another post in that same topic? I noticed in your video that the template notices that are normally in the reply area have been removed in your custom theme. That means if the duplicate post is being caught, you’re not getting any feedback notices.
In reply to: Styling forums in bbpress pluginGood info. Thanks for sharing that. I imagine there will be other framework style themes that do some custom hijacking like that too.
@Jonathan – Do you have a folder in your install named ‘forums’ that might be conflicting? Do you have BuddyPress installed and is it using the default ‘forums’ slug for its forums component? Did you do any rewriting in your .htaccess file regarding the forums slug? Have you tried visiting your permalinks settings and resaving them to see if something is just out of alignment?
In reply to: bbPress 2.0 – Updates@Jonathan – No. You should *never* modify core files, ever. If you’re modifying the core, you should share what you’re changing and why, so someone can show you a better way, or we can improve the core. If you’re creating a custom theme based on the core files, then until 2.0 drops you’re on your own to monitor the traclog and see what changes might impact you.
When are adding your theme compatibility? If you are hooking in on the ‘init’ or ‘wp’ actions, then it is too late for theme compatibility to pick it up.
function anointed_theme_setup() {
add_theme_support( 'bbpress' );
}
add_action( 'after_setup_theme', 'anointed_theme_setup' );Can you confirm the bbpress.css is inside the bbPress plugin directory and bbp-twentyten theme?
If it wasn’t working at all, then your custom theme’s bbPress template files wouldn’t be getting loaded either.
In reply to: bbP 2.0 b1 – Intermittently can't post replies@Johnathan – Can you use a tool like Firebug or Inspector, and look at the hidden input fields in your reply form?
Should look like the following
<input type="hidden" name="bbp_reply_title" id="bbp_reply_title" value="Reply To: Updated to bbPress 2.0 pre-beta 2" />
<input type="hidden" name="bbp_forum_id" id="bbp_forum_id" value="138" />
<input type="hidden" name="bbp_topic_id" id="bbp_topic_id" value="439" />
<input type="hidden" name="action" id="bbp_post_action" value="bbp-new-reply" />
<input type="hidden" id="_wpnonce" name="_wpnonce" value="0b78bb87eb" />
<input type="hidden" name="_wp_http_referer" value="/discussion/topic/updated-to-bbpress-2-0-pre-beta-2/" />Also, some details about your configuration would be great. WordPress version, Multisite/single-site, custom theme/theme compatibility, etc…
In reply to: Updating bbP plugin Deleted my theme!!There’s absolutely no way that bbPress is responsible for doing anything inside your wp-content/themes/ directory. If you made changes to files inside the bbPress plugin folder, then you broke the first rule of using a WordPress plugin.
Throttle means that user has the ability to bypass the configured posts-per-time-period limit.
In reply to: bbpress plugin beta2 breadcrumbsThe sanity check that I do in the breadcrumb is to check if the root slug is being included in the forums or not. If there’s no root slug, in the URL, then there’s no definitive breadcrumb that bbPress could know about. My logic may still be flawed here though.
In reply to: plugin beta2 subscribe/favorites delayYou could use something like Firebug or Inspector to monitor the requests and see what’s causing the delay.
In reply to: bbpress plugin beta2 breadcrumbsYou can manipulate the inclusion of the links on customized setups (such as the one I know you have.)
Check out the plugin code and adjust it to suit your needs in your custom theme.
When 2.0 goes gold, we’re committed to the code and functions that ship with it. So some objects might shift during shipping.
In reply to: Subscribers can view deleted/spam postsYes definitely. No one has reported this yet either. I’ll take a look right away.
Ah ha. That’ll do it. WordPress doesn’t have built in collision detection for these manually entered slugs. Mind creating a trac ticket and I’ll look into preventing this in the next release.
In reply to: BBPlugin – Can't resize forum listingIf you aren’t able follow the instructions provided, these kinds of things will happen. Revisit what you couldn’t do, and that should alleviate your woes. Hint: the functions.php code is also responsible for enqueueing the CSS.
In reply to: BBPlugin – Can't resize forum listingIf you aren’t able follow the instructions provided, these kinds of things will happen. Revisit what you couldn’t do, and that should alleviate your woes. Hint: the functions.php code is also responsible for enqueueing the CSS.
That function was removed and merged with another that did essentially the same check. The standard bbp-twentyten theme files won’t have this problem.
You’ve just experienced first hand why it’s best to use the built in theme compatibility if, particularly if you’re not a developer that keeps up with the code changes.
In reply to: Big problem – posts aren't showing up in forumPlease don’t bump topics here, especially when it’s still on the front page in the top ten topics.
Curiously I have testbp.org setup to use the same slug for blog tags and topic tags, and see no issues.
I haven’t quite figured out the best way to reliably integrate the login/register/lost-password pages into theme compatibility yet. The tentative plan is to finish up their shortcodes so they can be used on any page and ready for 2.0.
In reply to: bbPress 2.0 – Updates