Search Results for 'code'
-
AuthorSearch Results
-
May 25, 2011 at 3:33 am #100641
In reply to: bbPress 2.0 – FAQ
John James Jacoby
KeymasterLead post updated.
You need simply to scroll up to see the answer.
May 25, 2011 at 3:08 am #106236In reply to: "Breadcrumb" trail Forums link not working
John James Jacoby
Keymaster@zeldain – Are you using a shortcode to output your forum root? If so, there’s no way for bbPress to know where the root of your forums actually are when you’re *not* viewing that specific page.
Check
Admin > Settings > Forumsfor a better understanding on how breadcrumbs work. You are able to make adjustments to bbPress slugs similar to making changes to your WordPress category and tag slugs, to help you configure your forums the way you need them.May 24, 2011 at 10:58 pm #95439In reply to: bbPress 2.0 – Updates
tofugu
Member@JJJ aww, dang. Was hoping it wasn’t that
Any hope for future updates that will include embed code / img tags working in bbpress plugin?
May 24, 2011 at 8:14 pm #38570Topic: Changing Profile Link
in forum Troubleshootingscylderon
ParticipantIn the old version of bbPress, I could redirect to a WordPress user profile (or BuddyPress profile) by editing template files and changing profile links to:
<a href="<?php echo get_user_slug( get_post_author_id() ); ?>"><?php post_author( get_post_id() ); ?></a>Doesn’t seem like this will work with the bbPress plugin. Is there some way I can do this with the new version? Thanks!
May 24, 2011 at 7:30 pm #106225In reply to: Topic Author Avatar on Front Page?
Stunt
MemberNevermind. I figured it out. Here’s the code.
<?php echo bb_get_avatar( $topic->topic_poster, '30' );?>Someone should publicize this — there’s literally barley any information out there on how to do it so simply.
30 is the size of the avatar.
May 24, 2011 at 7:17 pm #38569Topic: Topic Author Avatar on Front Page?
in forum TroubleshootingStunt
MemberI’m trying this:
<?php echo bb_get_avatar( $topic->get_topic_author(), '30');?>But no luck? What am I doing wrong?
May 24, 2011 at 11:46 am #105946In reply to: bbpress plugin 2 beta 1
jarledb
ParticipantHope someone can help me out here
Feeling pretty stuck
May 24, 2011 at 11:46 am #100846In reply to: bbpress plugin 2 beta 1
jarledb
ParticipantHope someone can help me out here
Feeling pretty stuck
May 24, 2011 at 8:56 am #105936In reply to: Multiple forums on one site?
John James Jacoby
Keymaster@jckbco – If you use bbPress 2.0 (the plugin) and then have WordPress in Multisite mode, then yes you can. Each site in the WordPress install would need bbPress active on it. And that’s it.
May 24, 2011 at 8:56 am #100836In reply to: Multiple forums on one site?
John James Jacoby
Keymaster@jckbco – If you use bbPress 2.0 (the plugin) and then have WordPress in Multisite mode, then yes you can. Each site in the WordPress install would need bbPress active on it. And that’s it.
May 24, 2011 at 3:26 am #95432In reply to: bbPress 2.0 – Updates
tofugu
MemberMay 23, 2011 at 8:04 pm #95429In reply to: bbPress 2.0 – Updates
Gautam Gupta
Participanttofugu: You’re not doing anything wrong. Try adding this in yourwp-config.php:define( 'WP_MEMORY_LIMIT', '256M' );May 23, 2011 at 6:39 pm #95428In reply to: bbPress 2.0 – Updates
tofugu
MemberThe importer has been timing out on me, importing maybe around 7 topics before redirecting itself to a wp-admin page and dying

Does anyone know if I’m doing something wrong?
P.S. Damn this plugin is awesome.
May 23, 2011 at 1:53 pm #105890In reply to: New topic page URL in bbPress plugin
John James Jacoby
KeymasterYou’ll want to create a new page, and use the
[bbp-topic-form]
shortcode.
May 23, 2011 at 1:53 pm #100790In reply to: New topic page URL in bbPress plugin
John James Jacoby
KeymasterYou’ll want to create a new page, and use the
[bbp-topic-form]
shortcode.
May 23, 2011 at 1:22 pm #100864In reply to: bbPress 2.0 – Theme Compatibility
John James Jacoby
KeymasterThat would be nice, and I’ll most likely research something similar to this after 2.0. The problem is there is no way to add an additional theme path check on top of the parent theme and the child theme locations. Even then, that doesn’t make the single-, archive-, and page- templates match the HTML structure of your current theme, which means manually editing them anyways.
As annoying as it is to add theme support for bbPress and not have the files there, that’s also the easiest way to communicate ability between theme and plugin. If you add theme support for post thumbnails, and then don’t use post thumbnails in your theme, you just don’t have post thumbnails.
May 23, 2011 at 1:22 pm #105964In reply to: bbPress 2.0 – Theme Compatibility
John James Jacoby
KeymasterThat would be nice, and I’ll most likely research something similar to this after 2.0. The problem is there is no way to add an additional theme path check on top of the parent theme and the child theme locations. Even then, that doesn’t make the single-, archive-, and page- templates match the HTML structure of your current theme, which means manually editing them anyways.
As annoying as it is to add theme support for bbPress and not have the files there, that’s also the easiest way to communicate ability between theme and plugin. If you add theme support for post thumbnails, and then don’t use post thumbnails in your theme, you just don’t have post thumbnails.
May 23, 2011 at 12:20 pm #105963In reply to: bbPress 2.0 – Theme Compatibility
rofflox
MemberThank you John for this thread.
I’m currently working on the bbpress-plugin integration for my own themes. One point which is really annoying:
If I add theme-support for bbpress, the plugin only looks for bbpress-templates inside my theme folder. If i haven’t any template files stored there, no fallback is implemented and therefore nothing is displayed.
Wouldn’t it be nice, if bbpress looks first on the child-theme for its specific template-files, second at the parent-theme and last takes the builtin template-files from bbpress-twentyten theme?
The drawback with the currently implementet solution is, that I have to copy every template-file over in my own theme. Regardless of the fact, that I only want to alter one specific template-file. Same goes for a specific css stylesheet.
I looked at the sourcecode and it seems that i can hook into the filter “bbp_get_theme_compat” and simply de/register a new ‘bbpress-style’ stylesheet. But I think I’m not the only one which is looking for a solution inside bbpress-core.
If I missed something, do not hesitate to correct me.
Thanks
Roman
May 23, 2011 at 12:20 pm #100863In reply to: bbPress 2.0 – Theme Compatibility
rofflox
MemberThank you John for this thread.
I’m currently working on the bbpress-plugin integration for my own themes. One point which is really annoying:
If I add theme-support for bbpress, the plugin only looks for bbpress-templates inside my theme folder. If i haven’t any template files stored there, no fallback is implemented and therefore nothing is displayed.
Wouldn’t it be nice, if bbpress looks first on the child-theme for its specific template-files, second at the parent-theme and last takes the builtin template-files from bbpress-twentyten theme?
The drawback with the currently implementet solution is, that I have to copy every template-file over in my own theme. Regardless of the fact, that I only want to alter one specific template-file. Same goes for a specific css stylesheet.
I looked at the sourcecode and it seems that i can hook into the filter “bbp_get_theme_compat” and simply de/register a new ‘bbpress-style’ stylesheet. But I think I’m not the only one which is looking for a solution inside bbpress-core.
If I missed something, do not hesitate to correct me.
Thanks
Roman
May 23, 2011 at 7:11 am #105922In reply to: bbPress Plugin – Theme Integration
Aron Prins
ParticipantJohn,
Worked! Ill write an explanation when i get back from work on how to integrate for everyone

Also, looks like it shows some stuff double? ( the yellow bars saying no forums found
)http://magic.unique-masters.com/discussions/
cheers,
Aron
May 23, 2011 at 7:11 am #100822In reply to: bbPress Plugin – Theme Integration
Aron Prins
ParticipantJohn,
Worked! Ill write an explanation when i get back from work on how to integrate for everyone

Also, looks like it shows some stuff double? ( the yellow bars saying no forums found
)http://magic.unique-masters.com/discussions/
cheers,
Aron
May 23, 2011 at 7:04 am #105921In reply to: bbPress Plugin – Theme Integration
John James Jacoby
KeymasterSorry; I don’t understand the question. bbPress won’t move any files for you on its own. You mentioned that you’ve physically moved files (hopefully you copied, and did not remove them from the bbPress folder.) By putting
add_theme_support( 'bbpress' );
in your theme, you’re telling bbPress “I don’t need your help anymore and I have everything under control.” If you didn’t copy all of the files correctly, then bbPress won’t know what to do.
May 23, 2011 at 7:04 am #100821In reply to: bbPress Plugin – Theme Integration
John James Jacoby
KeymasterSorry; I don’t understand the question. bbPress won’t move any files for you on its own. You mentioned that you’ve physically moved files (hopefully you copied, and did not remove them from the bbPress folder.) By putting
add_theme_support( 'bbpress' );
in your theme, you’re telling bbPress “I don’t need your help anymore and I have everything under control.” If you didn’t copy all of the files correctly, then bbPress won’t know what to do.
May 23, 2011 at 6:23 am #105560In reply to: v2: Simple Press importer, and first thoughts
John James Jacoby
KeymasterNeat. I definitely like the bbPress forums better.
May 23, 2011 at 6:23 am #100460In reply to: v2: Simple Press importer, and first thoughts
John James Jacoby
KeymasterNeat. I definitely like the bbPress forums better.
-
AuthorSearch Results