Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 18,401 through 18,425 (of 32,518 total)
  • Author
    Search Results
  • #100641

    In reply to: bbPress 2.0 – FAQ

    Lead post updated.

    You need simply to scroll up to see the answer. :)

    #106236

    @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 > Forums for 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.

    #95439
    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?

    #38570
    scylderon
    Participant

    In 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!

    #106225
    Stunt
    Member

    Nevermind. 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.

    #38569
    Stunt
    Member

    I’m trying this:

    <?php echo bb_get_avatar( $topic->get_topic_author(), '30');?>

    But no luck? What am I doing wrong?

    #105946
    jarledb
    Participant

    Hope someone can help me out here :) Feeling pretty stuck

    #100846
    jarledb
    Participant

    Hope someone can help me out here :) Feeling pretty stuck

    #105936

    @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. :)

    #100836

    @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. :)

    #95432
    tofugu
    Member

    @Bjorn – Took me a while to find too – it’s in your wp-admin under tools>>import (and will show up at the bottom of the list if you have the bbpress plugin installed) – at least that’s how I’m guessing it happens.

    @Gautam – Thanks much! I’ll give it a try! :D

    #95429
    Gautam Gupta
    Participant

    tofugu: You’re not doing anything wrong. Try adding this in your wp-config.php:

    define( 'WP_MEMORY_LIMIT', '256M' );

    #95428
    tofugu
    Member

    The 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.

    #105890

    You’ll want to create a new page, and use the

    [bbp-topic-form]

    shortcode.

    #100790

    You’ll want to create a new page, and use the

    [bbp-topic-form]

    shortcode.

    #100864

    That 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. :)

    #105964

    That 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. :)

    #105963
    rofflox
    Member

    Thank 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

    #100863
    rofflox
    Member

    Thank 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

    #105922
    Aron Prins
    Participant

    John,

    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 :O )

    http://magic.unique-masters.com/discussions/

    cheers,

    Aron

    #100822
    Aron Prins
    Participant

    John,

    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 :O )

    http://magic.unique-masters.com/discussions/

    cheers,

    Aron

    #105921

    Sorry; 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. :)

    #100821

    Sorry; 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. :)

    #105560

    Neat. I definitely like the bbPress forums better. :)

    #100460

    Neat. I definitely like the bbPress forums better. :)

Viewing 25 results - 18,401 through 18,425 (of 32,518 total)
Skip to toolbar