Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 62,251 through 62,275 (of 69,054 total)
  • Author
    Search Results
  • #53290
    peterverkooijen
    Participant

    Buddypress is great, but how member/profile data is stored in the database is a mess.

    #53289
    Arx Poetica
    Participant

    Nice. Just what I need about right now.

    #53288
    Walter24
    Participant

    Andy is absolutely right!!! Sometimes I forget how big, unique and special this project is. “Rome was not built in a day”

    BP has evolved in the last months and what is planned for future releases is exciting. The more I learn about BuddyPress the more I LOVE it.

    I will do the best I can to help out.

    #53285
    Mike Pratt
    Participant

    “low development activity on WP MU in general” – the WPMU folks have been on fire lately, not sure what slow dev universe you speak of. I second Jeff’s comments.

    As for some of the features you speak of, a simple cruise through Andy’s http://testbp.org would answer those questions. Compared to the mind-numbing admin work required for Drupal and Joomla, BP is a joy. Of course, if you don’t want to do any work under the hood, go with Ning and have your entire experience dictated to you.

    #53284
    takuya
    Participant

    You really need to understand buddypress…and maybe bit about WordPress. Everything is explained in readme.txt

    1st, 2nd, 3rd, 4th, or whatever, BuddyPress stays in plugins directory as it’s a plugin for wpmu.

    #53280

    In reply to: Membership fee

    takuya
    Participant

    Since this is buddypress forum, I think johnegg is looking for membership plugin that works on buddypress interface aka frontend.

    @Peterverkooijen: You should post that question on wpmudev forum, or contact them to find out more.

    #53276
    4467657
    Inactive

    Thanks Andy, I just wanted to clarify that instead of integrating the Atahualpa theme with BP I decided to keep them separate for the time being and install Buddypress on a different blog within the same WPMU install. This way the two do not conflict and I can use the new BP theme architecture without tinkering with the source files. I will create CSS styles for Buddypress to match my web site’s look, but that should be pretty straightforward. Atahualpa offers significant customization capabilities (e.g. creating your own widget areas, split columns, etc) and I wanted to keep them until BP has similar features.

    This setup actually works except a few minor issues with BP member and group widgets that I wanted to use on my main (non-BP) blog. The issues weren’t there in 1.0.3 – hopefully they can be fixed at some point.

    I am liking my Buddypress-powered portal more and more :)

    #53275
    peterverkooijen
    Participant

    Thanks Anointed, that sounds great.

    How solid/mature is it as a membership plugin, compared with “market leaders” like WishList and MemberWing? I was going with WishList, but may have to reconsider.

    Are there any plans to add this kind of functionality to standard Buddypress?

    Edit: I see Supporter only has PayPal support…

    Edit: WishList has more than PayPal, but no Amazon or credit cards either…

    #53267
    Andy Peatling
    Keymaster

    Using an existing WordPress theme will require work on your part. WordPress themes are designed for blogs, not for all the extra features that BuddyPress offers. You will be able to integrate the header and footer and overall look and feel, but specific features will still need CSS styles.

    #53265
    Andy Peatling
    Keymaster

    See my comment on your ticket:

    https://trac.buddypress.org/ticket/1117#comment:2

    #53263
    Paul Wong-Gibbs
    Keymaster

    Both of these are known issues and we are aware.

    #53262
    4467657
    Inactive

    just wanted to share the status of this.

    I tried both mrmail’s and Detective’s approaches and got a partial success. My main blog looks as it used to, but the BP pages are not styled properly (I guess it’s because both Atahualpa and BP have different widget areas). The 997 patch did not help much unfortunately.

    In the end I decided to run BP on a different blog and keep my main blog on Atahualpa. This setup does work style-wise, but there are a couple of bugs to fix in the core members and group widgets. I entered them in Trac (https://trac.buddypress.org/ticket/1116)

    #53261
    David Lewis
    Participant

    awesome!!!!!!!!!!!!!!

    #53259

    In reply to: Title problems

    Paul Wong-Gibbs
    Keymaster

    I’m marking this as “not a support question” as it’s a question about site customisation/theming and not a bug with BuddyPress core.

    #53255

    In reply to: Membership fee

    takuya
    Participant

    You can do whatever you want if you can code a plugin for your needs. I hear it shouldn’t be hard for wordpress plugin developers to make one for buddypress as they’re the same.

    #53254
    Andy Peatling
    Keymaster

    This is 1.1 only, so if you are using an earlier version then you wouldn’t have seen them. :)

    #53253
    Simon Wheatley
    Participant

    Argh! I thought I’d exhaustively checked all the functions in BuddyPress before embarking on mine. Oh well.

    Thanks Andy!

    #53251
    Andy Peatling
    Keymaster

    There are no specific checks on group names etc yet, but you can do this:

    <?php if ( bp_is_groups_component() && 'my-group' == bp_current_item() ) : ?> This is my-group <?php endif; ?>

    #53247
    Paul Wong-Gibbs
    Keymaster

    I was just writing up something, but Andy won that competition.

    It’s also worth pointing out that rather than doing $bp->current_component != ‘groups’, you should be using $bp->current_component != $bp->groups->slug. This works if a site has decided to rename one of the built-in components.

    #53245

    In reply to: My blogs Menu Problem

    takuya
    Participant

    I thought someone else reported this problem, and you were also reporting your problem there. I’m not sure if another of this is needed. But when you post questions, you SHOULD always include your server setup, like buddypress version, wpmu version, plugins in use.

    #53244
    Andy Peatling
    Keymaster

    In 1.1 you have:

    bp_is_blog_page()
    bp_is_register_page()
    bp_is_activation_page()
    bp_is_directory()
    bp_is_single_item()

    bp_is_profile_component()
    bp_is_activity_component()
    bp_is_blogs_component()
    bp_is_wire_component()
    bp_is_messages_component()
    bp_is_friends_component()
    bp_is_groups_component()
    bp_is_settings_component()

    bp_is_messages_inbox()
    bp_is_messages_sentbox()
    bp_is_messages_compose_screen()
    bp_is_notices()

    bp_is_user_friends()
    bp_is_friend_requests()

    bp_is_user_blogs()
    bp_is_user_recent_posts()
    bp_is_user_recent_commments()
    bp_is_create_blog()

    bp_is_user_groups()
    bp_is_group_create()
    bp_is_group_home()
    bp_is_group_invites()
    bp_is_group_members()
    bp_is_group_forum_topic()
    bp_is_group_forum()
    bp_is_group_wire()
    bp_is_group_leave()
    bp_is_group_admin_page()

    bp_is_user_profile()
    bp_is_profile_wire()
    bp_is_change_avatar()
    bp_is_profile_edit()

    bp_is_user_activity()
    bp_is_user_friends_activity()

    If you wanted to see if this was a single group page, in your template you could do:

    <?php if ( bp_is_group_home() ) : ?>Show this on group home pages <? endif; ?>

    Or if you wanted to show something on every single group page, regardless if it was the home page or not:

    <?php if ( bp_is_groups_component() && bp_is_single_item() ) : ?> Show this on all single group pages <?php endif; ?>

    #53243
    takuya
    Participant

    I suggest you read the original site carefully… I’ve posted many times here that RPX is so far the best solution for OAuth for buddypress on ANOTHER TOPIC.

    #53238

    In reply to: Group/Profile Layout

    Xevo
    Participant

    I kinda think this looks weird/bad too, I love the standard way of communities too just focus on what you just clicked. I’ve been trying to find a solution to get rid of those 3 columns. But nothing so far.

    I did saw a site a few weeks ago that looked like facebook while being build on buddypress. Would be nice if buddypress changes to this or at least provides an option to do this.

    Edit: I found something great, http://3oneseven.com/08/bruce/. These buddypress themes are exactly what I’m looking for. I can’t test them right now, but if they work with the newest buddypress then this would be a solution for me.

    #53235
    Jeff Sayre
    Participant

    Have any of those 20 people filled out their profile pages? See this Trac ticket for more information: https://trac.buddypress.org/ticket/470

    Also, with BuddyPress v1.1, the Group API has been significantly rewritten. You may find that this issue goes away.

    #53234
    Jeff Sayre
    Participant

    To add further credence to the healthy, continued existence of WordPress Mu and the strength and solidity of BuddyPress, 8 months ago I went through the same investigation, searching out the strongest, best supported, most flexible open-source based platform with which to build out a very large social network. I decided that WPMU + BuddyPress was the solution for me.

    Since that time, I’ve fully immersed myself in both platforms, even becoming a moderator on theses forums (as you can see). Over that 8 month period, WPMU and BP have become even stronger, have improved in numerous ways. They are both at the stage where I am now very confident in their foundation. My project is now a go and I am currently feverishly working on building my platform. I hope to be rolling out a beta of my “professional grade community” by the first of the new year.

    So do not worry about the future of WPMU or BuddyPress. The future is strong, bright, and healthy.

Viewing 25 results - 62,251 through 62,275 (of 69,054 total)
Skip to toolbar