Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 23,576 through 23,600 (of 64,518 total)
  • Author
    Search Results
  • #138628
    Mailhilfe.de
    Participant

    Do anybody know where I add these in bbpress:

    
    <?php $prev = get_permalink(get_adjacent_post(false,'',true)); if ($prev != get_permalink()) { ?><a href="<?php echo $prev; ?>">Vorheriger Artikel</a><?php } ?> 
    <?php $next = get_permalink(get_adjacent_post(false,'',false)); if ($next != get_permalink()) { ?><a href="<?php echo $next; ?>">Nächster Artikel</a><?php } ?>
    #138627
    FreeWPress
    Participant

    Exist a plugin, is called GD BBpress attachments is work fine..

    #138624

    In reply to: bbPress 2.4.1

    Denver Prophit Jr.
    Participant

    @netweb I can’t get my forums index to look like yours. Help?

    #138623
    Denver Prophit Jr.
    Participant

    @LabSecrets I like your video help format. Did you create or purchase the video intros? I started out creating buddypress group forums and I now want to change those to sitewide. I don’t see any way that I can do that in WP Admin.

    jazinsa
    Participant

    Is it possible to show a user’s forum topic count(or post count) in the buddypress profile page? It feels like it should be simple enough but hours of googling and reading topics here has left me more confused than when I started.

    I can see its possible on a bbpress profile page, where it’s using:

    <p class="bbp-user-topic-count"><?php printf( __( 'Topics Started: %s',  'bbpress' ), bbp_get_user_topic_count_raw() ); ?></p>
    <p class="bbp-user-reply-count"><?php printf( __( 'Replies Created: %s', 'bbpress' ), bbp_get_user_reply_count_raw() ); ?></p>

    Should I be calling a different function altogether, or is there a specific way to put bbPress functions inside a BuddyPress template page?

    A good example of what I mean is at Tamriel Foundry, where the various counts are listed under the heading Post Details. (The design of that site in general is amazing)

    Any help would be greatly, greatly appreciated! And apologies if you are reading this for a second time, I wasn’t sure whether to post my query at the Buddypress or bbPress forums.

    #138613
    mmichael1991
    Participant

    Hi!

    First of all, if I’m double posting this, I’m really sorry!

    I want to create a menu item (or text link) to let users quickly go to their bbpress profile.
    (http://raven.michaelravenstein.nl/forums/users/userid/)

    So how do i get the right link?

    Any help is welcome!

    – Michael

    pekmez
    Participant

    the path is just like for the version 2.4.1

    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php

    As JarretC wrote before

    Change the line 30

    <?php bbp_list_forums(); ?>

    to

    <?php bbp_list_forums( array ( 'separator' => '<br />' ) ); ?>

    Thanx JarretC

    #138611

    In reply to: Remove Sidebar

    Robin W
    Moderator

    ok, try this – I have culled it from varous other posts, in particular

    Full-Width Forum

    Don’t swear it will work, but give it a go

    1. Create a page called “forums”,
    2. make this page a full width page – if your theme doesn’t support this, then you’ll need to create a child theme and add a full page template.
    3. Put this shortcode on the page [bbp-forum-index]
    4. edit the following file
    wp-content/plugins/bbpress/templates/default/css/bbpress.css
    by removing the left float from div.bbp-breadcrumb(line 405)
    5. In your style.css add the following

    .bbPress #primary {
    display: none;
    }
    .bbp-forums {
    width: 100%;
    }

    let us know if that works

    #138610
    FreeWPress
    Participant

    Is not good idea to change core code… And when bbpress is updated you lost all your modifies…

    #138609
    pekmez
    Participant

    as garindan post, pls try this file to edit.

    wp-content/plugins/bbpress/includes/common/template.php

    Line 2249

    change

    // Add the breadcrumb
    // $crumbs[] = '<a href="' . esc_url( $root_url ) . '">' . $r['root_text'] . '</a>';

    to this

    // Add the breadcrumb
    // $crumbs[] = '<a href="' . esc_url( $root_url ) . '">' . $r['root_text'] . '</a>';
    $crumbs[] = '<a href="/forum/">Forum</a>';
    #138607
    Donta
    Participant

    I also forgot to add the “freshness” time is also out of sync on some pages.

    #138606
    Donta
    Participant

    hello Stephen.

    i am running version 4.1.5

    as for the sql limitation, i have own dedicated server so if I can get this corrected if you point me the right direction. I have never done this before.

    the problem is still the same. I am now on 280K posts and all the topics are either assigned to wrong person, anonymous or its owners. once again The process came to a slow transfer once I reached the high treshold.

    #138603
    Robin W
    Moderator
    #138602

    In reply to: Remove Sidebar

    Robin W
    Moderator

    you can add this function to your functions.php

    function disable_all_widgets( $sidebars_widgets ) {       
        if ( function_exists('is_bbpress') ) {
            if (is_bbpress()) {
                $sidebars_widgets = array(false);
                remove_all_actions('bp_register_widgets');
                unregister_sidebar( 'bp_core_widgets' );
            }
        }
        return $sidebars_widgets;
    }
    
    add_filter('sidebars_widgets', 'disable_all_widgets', 1, 1);

    or this to your style.css

    .bbPress #primary {
    display: none;
    }
    #138601
    Stephen Edgar
    Keymaster

    1. Users are not in sync with their topics and replies. Some topics with no replies downloaded yet are in ok, but many are not. Some topics are assigned to users who never posted anything, some are assigned to admin and the rest are assigned to their owners.

    Until the repair tools are run after the import you will pretty much always see issues like this, the tools need to be run to get everything in sync.

    2. At somewhere at 350,000 posts, the whole process slows down (10 posts per 20 seconds or worse) to turtle speed.

    This can be your web host limiting the amount of SQL queries you can run per hour/day etc, contact your web host and ask them what limitations are on your hosting plan.

    3. I repaired whatever I downloaded using the bbpress repair page and I don’t see anything fixed.

    Odd, though it makes my first answer moot, but it is still important in that the execution order of the importer can significantly make these things look weird when it has imported a topic and expects there to be 12 replies but only sees 3.

    So for now, kind of ignore my answers to 1 & 3 above and lets start on what version of vBulletin are you trying to import from? (and we can go from there)

    #138600
    Stephen Edgar
    Keymaster

    Your issue has nothing to do with bbPress, bbPress does NOT contain the string ‘Hack tool’ anywhere in its source, I would take a look at any other plugins you may be running.

    #138599

    In reply to: Custom Import

    Stephen Edgar
    Keymaster

    Where does it say that? 😉 I just changed it to MySQL 😉

    https://codex.bbpress.org/import-forums/custom-import/

    Take a look at the following for some reading material to help get you going.

    Importing from DotNetNuke Active Forum

    The basis of what ended up being used is here.

    Mix all that in with this on converting from Microsoft SQL to MySQL (This was Access but the same tools should do MSSQL fine)

    Documented import from snitz access database

    Let me know how that all goes for you and I will follow up with more 🙂

    Donta
    Participant

    I like bbpress but I am desperately trying to make it work for moving a large forum from vbulletin.

    I tried to move my forum several times and everytime I move users, topics and some replies, I notice that users and some of their true replies are out of sync. In other words, some user are assigned to topics they didn’t start or reply to and other topics are assigned to admin. No, I didn’t wait for 1 million replies to be downloaded. I checked the first 350,000K replies and everything seems to be a mess.

    1. Users are not in sync with their topics and replies. Some topics with no replies downloaded yet are in ok, but many are not. Some topics are assigned to users who never posted anything, some are assigned to admin and the rest are assigned to their owners.
    2. At somewhere at 350,000 posts, the whole process slows down (10 posts per 20 seconds or worse) to turtle speed.
    3. I repaired whatever I downloaded using the bbpress repair page and I don’t see anything fixed.

    I am not sure what is causing this. Is this normal?

    I need help. I can give links and login info to bbpress staff if required.

    #138592

    In reply to: Persistant login form

    Robin W
    Moderator

    Suggest you add the plugin

    bbpress WP tweaks

    and then use the

    (bbpress) login widget

    added to your sidebar.

    #138588
    Unit9
    Participant

    Wordpress: 3.7.1
    Buddypress: 1.8.1
    BBPress: 2.4.1

    Hi guys,

    I realised I posted this in the wrong forum so I’m adding it here. 🙂

    Is there any way for me to adjust the current BBPress and get back profile activity posting, so whenever someone posts in the forum, it shows on their BuddyPress profile activity feed?

    This works in previous versions of BBPress but is broken in the current version.

    Thanks!

    #138587

    Topic: Remove Sidebar

    in forum Installation
    Marcosbcn
    Participant

    Hello

    I installed bbpress but the forum comes close by the presence of the sidebar, how can eliminate the sidebar to the full width of the page is for the forum?

    http://www.adelgazarrapidoweb.com/forums/forum/foro-para-adelgazar/

    wordpress 3.7.0
    bgpress 2.4.1

    Regards

    Mark

    #138585
    Hatchman
    Participant

    I am trying to import my phpbb forum into bbPress. I put all the correct values in for the database but it comes back and says:

    Conversion Complete
    No reply_to parents to convert
    No replies to convert
    No tags to convert
    No topics to convert
    No forum parents to convert
    No forums to convert
    Starting Conversion

    The tables are loaded with forum data. Any suggestions?

    #138583
    patc890
    Participant

    We just started to use bbpress forum and noticed that some of the entries are out of order (time and date). I just put in a test entry and it shows up before two other entries up to 10 days before this one.
    Can anyone tell me what the problem is?

    Thanks.

    Pat

    #138581
    Rogelio
    Participant

    Hi,

    I managed to create a TinyMCE plugin and add it to wordpress editor (which is the same as bbpress).

    So far so good.

    Using

    $ args ['teeny'] = false;

    config, my tinymce plugin’s button show normal.

    But, I need to be displayed in the default editor for bbpress, in teeny editor.

    Any ideas?

    Thanks a lot.

    #138579

    Topic: Time

    Mailhilfe.de
    Participant

    Do you think about to add different time areas for each user in the bbPress Profile?

Viewing 25 results - 23,576 through 23,600 (of 64,518 total)
Skip to toolbar