Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,926 through 4,950 (of 7,367 total)
  • Author
    Search Results
  • #70538
    rich! @ etiviti
    Participant

    depends on how you have it setup – deep integration is needed to pull in buddypress adminbar into bbpress.

    technically it is hooked on

    add_action( 'wp_footer', 'bp_core_admin_bar', 8 );

    #70536
    gerikg
    Participant

    is there a command line to get the buddybar like, getsidebar() ???

    #70509
    3sixty
    Participant

    I’d be curious to hear more about what people miss about the bbPress admin panel. If it’s about activating plugins, I’m afraid that access to bb-admin.php won’t do any good. If the plugin is compatible with BP, then you should be able to put it in the WP plugin dir and activate it. But chances are good that it won’t be, as BP and bbPress are very different at the level of the template. bbPress plugins, at least the ones that have big surface effects, need to be rewritten to some extent to be compatible.

    It was about activating plugins. At the time I wrote this post, I had no idea that the bbPress in BuddyPress was so different than the stand-alone bbPress. It’s clear now that the best approach is to adapt existing bbPress plugins to BuddyPress Forums, or write new ones.

    #70204
    Boone Gorges
    Keymaster

    I’d be curious to hear more about what people miss about the bbPress admin panel. If it’s about activating plugins, I’m afraid that access to bb-admin.php won’t do any good. If the plugin is compatible with BP, then you should be able to put it in the WP plugin dir and activate it. But chances are good that it won’t be, as BP and bbPress are very different at the level of the template. bbPress plugins, at least the ones that have big surface effects, need to be rewritten to some extent to be compatible.

    If the purpose is group-independent forums, then I think that a far, far better solution is to rig up a way to have some groups “unlisted”, so that their forums, while still attached to groups, would seem group-free. Not entirely trivial, but easy enough, and far, far less overhead than an entirely separate installation of bbPress that has to be separately themed, etc.

    Or is there something else about the bbPress admin panel I’m forgetting? I suppose it would be kinda nice to have a place to see all topics at a glance from the admin panel.

    #70132
    3sixty
    Participant

    From your plugin page:

    Future Consideration:

    * Report Post to Mod (use notification system to group mods)

    * Support Forums (run nongroup forums)

    * Best Answer or bb-reputation (Karma)

    * bbPress Favorites functionality (renamed due to conflict of activity stream?)

    Report Post w/notifications to group mods: That is excellent, and exactly what I had in mind here. Would there be some “admin” screen for reported posts, or would the notification just link you to the reported post?

    #70130
    rich! @ etiviti
    Participant

    it would be nice in the future, to have the option to display active topic below forums

    in wp-admin settings to give users a choice,

    As Andy mention above with getting more hooks into the template – this is just a restriction on what I could find on that template to insert the html. either add_action( 'bp_directory_forums_content', 'bp_forum_extras_index_screen' ); or add_action( 'bp_after_directory_forums_list', 'bp_forum_extras_index_screen' ) (but if you are not afraid of hacking up your own template – you could easily move things around)

    I’ll sit down (hopefully tomorrow) and look over bbPress templates and BP and see what/where can be added.

    to have a widget which would display ‘forums’

    without many details, like description, but simply a list with forums names

    I need to look into how to create widgets (something on the bp site?) – the functionality is already there and would be very easy for me to add it in.

    3) (least important new features, would be to have forums icons in the forum index

    This would be the group avatar correct?

    #70109
    rich! @ etiviti
    Participant

    @apeatling

    I’ll comb over and submit something this week. I just think a few which mimic some of the same hook positions that bbPress had (topic meta, post links – outside of admin-links, etc)

    forgot: tagged up 0.1.8

    also outlined some additional hacks using the plugin

    http://blog.etiviti.com/2010/03/buddypress-hack-forum-tweaks-using-group-forum-extras-plugin/

    #70058
    rich! @ etiviti
    Participant

    i have updated the development version again to 1.6b3 which now includes RSS Feed for public group forum topics and topic posts.

    also included a few extra functions which require theme edits but give a little more bbpress feel

    Link the freshness time_since to the last post

    edit theme /bp-default/forums/forums-loop.php

    Change:

    <td>
    <?php bp_the_topic_time_since_last_post() ?>
    </td>

    To:

    <td>
    <a href="<?php echo bp_forum_extras_topic_last_post_link( 15 ); ?>"><?php bp_the_topic_time_since_last_post() ?></a>
    </td>

    Note: 15 per_page is default for bp_has_forum_topic_posts – you may need to change this if you use a different per_page in the loop.

    Add pagination next to topic title

    theme edit /bp-default/forums/forums-loop.php

    After the topic title, Add:

    <?php bp_forum_extras_topic_page_links( 15 ) ?>

    You may pass additional args – refer to paginate_links codex

    if you would like to test it out… grab the download from ‘development version’ at:

    https://wordpress.org/extend/plugins/buddypress-group-forum-extras/download/

    #70015
    3sixty
    Participant

    Actually, I ran out of time. I’m just going to use the $thread_template->message->date_sent variable and convert it to “posted … ago” using the “nicetime” function found on the PHP manual pages… works for now!

    #70010
    3sixty
    Participant

    OK, starting to solve the issue. I think the root of the problem is that my BP installation is on shared hosting (I know, I know…) and the server time zone is different than my WP installation time. HowEVER, BP Messages is pulling the SERVER time when it INSERTs the message record (bp-messages-classes.php:

    // First insert the message into the messages table
    if ( !$wpdb->query( $wpdb->prepare( "INSERT INTO {$bp->messages->table_name_messages} ( thread_id, sender_id, subject, message, date_sent ) VALUES ( %d, %d, %s, %s, FROM_UNIXTIME(%d) )", $this->thread_id, $this->sender_id, $this->subject, $this->message, $this->date_sent ) ) )

    I added a variable and changed the query like this:

    $wp_current_time = current_time('mysql');
    // First insert the message into the messages table
    if ( !$wpdb->query( $wpdb->prepare( "INSERT INTO {$bp->messages->table_name_messages} ( thread_id, sender_id, subject, message, date_sent ) VALUES ( %d, %d, %s, %s, %s )", $this->thread_id, $this->sender_id, $this->subject, $this->message, $wp_current_time ) ) )

    Now the message inserts correctly using my WP installation time instead of the server time, and REPLIES show up as having the correct time (such as “posted 4 minutes ago”). However…

    While REPLIES report time correctly, for some reason, the INITIAL MESSAGE does not. I think that <?php bp_the_thread_message_time_since() ?> is somehow not reporting correctly. Let me check to see what’s wrong with that.

    r-a-y
    Keymaster

    1) Avatars – users can upload their own avatar. Please check out testbp.org for a demo of BP.

    2) Use the BP Template Pack plugin – https://wordpress.org/extend/plugins/bp-template-pack/

    Be sure to go through all the steps in the plugin.

    3) Go to testbp.org and try the group forums yourself. If you want a traditional forum script, use bbPress, vBulletin, phpBB, etc. BP is not a forum script – it’s social networking in a box!

    #69973
    3sixty
    Participant

    hmm, it turns out my server is on CDST. However, changing the time zone on the WPMU backend had no effect on the Messaging “Time Ago” inconsistency. I’ll file a bug report now.

    #69971
    3sixty
    Participant

    WP is set to UTC, and so is my server.

    I can duplicate this on a fresh BP install, but I can’t duplicate this on testbp.org

    In debugging, I sent a test Message that had a Sent Time of 2010-03-24 08:22:03 when the server time is UTC time 2010-03-24 13:22:52. So there is the 5 hour difference.

    Must be some issue with my server. Anyone else having this? Either way, will file this on trac as a bug.

    #69957
    brianglanz
    Participant

    I do not know how OpenSSO flies with BP. I looked and sorry, my memory and reference are slightly outdated; “OpenSSO” the project has become OpenAM and lives on, here as of last month, per Oracle swallowing Sun, then spitting out OpenSSO the project but keeping OpenSSO the name (classic).

    I have had and have seen BP running with LDAP and with SSO between BP and MediaWiki. Here obviously we have BP and “external” bbPress with SSO even if it does still have the “Help I can’t post! the first time” issue. I have not personally used a plugin to this effect, but @boonebgorges or someone else may have wrapped up the like.

    As for “BP Federation” I suggest it be more than BP – BP, rather BP – WP. WP sites with no interest in running their own BP could affiliate, conjugate, federate with an umbrella BP.

    True, a system running BP after WP 3 will be able to host sites but each will necessarily be limited in some regards v. independent WP sites, just as one is now limited by being a blog site within a MU. With BP Federation, my thought is WP sites could have their cake — being independent — and eat it, too — affiliate with a parent BP — without needing to run BP themselves. Is that like having cake, eating it, too, AND sharing some with a friend? OK now I want cake. BG

    #69954
    Paul Wong-Gibbs
    Keymaster

    Ensure your WP install is set to use the same timezone as your server. Test with a new message, not an old one, because in some areas the timestamps are cached and so won’t reflect any changes to the timezone (i.e. the Activity Stream is an easy example). If you still find an inconsistency, please report this as a bug on https://trac.buddypress.org/

    #69902
    3sixty
    Participant

    There is a long way to go, but now that bbPress is tightly integrated in BP, forum support is emerging. Etiviti (rich!)’s new “Forum Extras” plugin that is a big leap toward bringing classic bbPress plugins into the BP environment, and it’s getting better every day. Forum attachments is another great plugin that brings a classic forum feature into the BP environment.

    There are some core limitations of bbPress that will keep it from being as “powerful” as PHPBB, such as the ability to merge threads, but whether those features are critical or even desirable is open to debate. (Moderators love that feature but I am not sure users do.)

    I hope it’s not true that forums are “minimized on purpose” around these parts, because what you have built is a perfect fit with forums. Forums are the heritage of web-based “social networking”, and there are a lot of important social interactions that still lend themselves quite well to the forum structure (such as this thread you are reading right now, for example).

    Like that hybrid commercial on TV right now: Forums were social before Facebook even existed or YouTube uploaded its first video. :)

    Reaxion
    Member

    uuhh – bbpress seems pretty good, but as far as restricting access to certain conversations to certain logged in members one plugin is antiquated with no admin section for my client (sad since it had the beginnings of what I need) and another restricts access to categories of users but not specific users – dang

    Obviously I am new to researching a forum solution – maybe I’ll have to move to something like phpbb2, yay

    Anonymous User 96400
    Inactive

    Nope, you’re on a BuddyPress powered site, but the forums that are integrated into BuddyPress are powered by BBPress.

    #69848
    Mariusooms
    Participant

    Agree with Andrea_r. Note that the oneclick install forum doesn’t have as much community support as far as plugins go as the standalone bbpress does.

    At the end for forums I think nobody beats phpbb. So whatever your focus is as a site/communicty/group go with the best extensible available solution. If forums is your core look at forum software that gives you what you need. I would hold back for investing in a swissarmyknife, but fail at the one thing that is important for your audience.

    takuya
    Participant

    If you want forums, then BuddyPress is not the best tool. Try bbpress, that’s the forum for wordpress.

    #69840
    Boone Gorges
    Keymaster

    You’ll have to dig pretty deep into the bbPress code to make this work right. bp_forums_tag_heat_map uses bb_tag_heat_map to create the cloud, and it doesn’t take order or order_by as an argument. bb_tag_heat_map then goes to bb_get_tag_heat_map. If you were going to make the reordering happen (without a lot of funny business) it might best happen at the level of bb_tag_heat_map (or a custom version of that function). The list of tags is created like this (see buddypress/bp-forums/bbpress/bb-includes/functions.bb-template.php):

    $tags = bb_get_top_tags( array( 'number' => $limit ) );

    which returns an array. You could then try using usort to sort by $tags[‘count’] before sending $tags to bb_get_tag_heat_map().

    #69828
    Andrea Rennick
    Participant

    “I really do like WordPress/Buddypress, I am just unable to structure the forums in buddypress in a true forum layout.”

    If you’re just looking for a forum, then look at bbpress or any other forum package. BuddyPress has its focus on the social networking aspects. the forums area are minimized on purpose.

    It sounds like you want a just a forum, not BuddyPress.

    #69823
    rich! @ etiviti
    Participant


    @nuprn1
    , what did you modify? I noticed that posts in bbpress don’t show up on the activity notifications, and the public/private/hidden stuff doesn’t seem to work either…

    I can’t remember but i had to rewrite a bunch of it – and also hack the bbPress core to play nice with the GMT buddypress timestamps. Then throw in that bpGroups uses xmlrpc – so personally i’m moving to open up bbpress within buddypress instead of running an external bbpress install (with all the hidden/private forums)

    #69818
    3sixty
    Participant

    OK, getting somewhere now:

    Fatal error: Call to undefined function bp_wire_setup_globals() in /home/mysite/public_html/wpmu/wp-content/mu-plugins/oci_bp_group_forums.php on line 618

    so the bbpress and Buddypress plugins are making contact but they are using (at least one) obsolete function. What is the replacement for bp_wire_setup_globals()?

    #69805
    Paul Wong-Gibbs
    Keymaster

    That was part of BP before version 1.1

Viewing 25 results - 4,926 through 4,950 (of 7,367 total)
Skip to toolbar