Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 63,501 through 63,525 (of 69,044 total)
  • Author
    Search Results
  • #49866
    Paul Wong-Gibbs
    Keymaster

    Don’t run a public site on trunk? I mean, I have a local development installation of trunk but to run that publicly…

    The most recent trunk entirely changes the way the forums component is integrated into BuddyPress, which is why you are getting these problems.

    #49864

    In reply to: wpmu 2.8.2

    seppolaatle112
    Participant

    Will buddypress 1.0.3 work with wpmu 2.8.2?

    – Jupp :)

    https://buddypress.org/blog/news/buddypress-103-released/

    r-a-y
    Keymaster

    Okay, I found an easier way for this.

    Instead of creating a new stylesheet, you can use your existing admin bar CSS, but define some new rules for just the WPMU admin area.

    Use this as your CSS selector:

    body.wp-admin #wp-admin-bar {ENTER YOUR STYLES HERE}

    Remember to define the body.wp-admin selector for each BuddyBar element you want to style.

    eg.

    body.wp-admin #wp-admin-bar {
    background:yellow !important;}

    body.wp-admin #wp-admin-bar li * {
    font:12px normal georgia,times,serif !important;
    }

    This will change the BuddyBar background colour to yellow and the font to a serif for the WPMU admin area.

    Hope that helps!

    #49856
    r-a-y
    Keymaster

    I’ve recently started doing this for the purpose of renaming a few of the predefined labels as well.

    I use PoEdit and followed the instructions listed here:

    https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/

    The “Labels and Messages” section is what you want to read up on.

    Follow them explicitly and you should be good to go.

    You’ll probably want to find a PoEdit tutorial on Google as well.

    #49853
    r-a-y
    Keymaster

    By “post”, what do you mean exactly?

    A BuddyPress forum post, or just a regular blog post?

    If it’s a blog post, I’m quite certain a WordPress plugin can handle that.

    r-a-y
    Keymaster

    You’d have to define a separate stylesheet for the admin BuddyBar, and hook it into the admin_head.

    You can start work on that separate stylesheet, after you’ve done that I can help you hook it in the admin area.

    #49843

    In reply to: BuddyBar for bbPress

    r-a-y
    Keymaster

    unsalkorkmaz, that’s a totally different topic.

    Please look at this thread:

    https://buddypress.org/forums/topic/bp-avatars-and-nothing-else-in-bbpress-possible#post-17431

    #49841

    In reply to: BuddyBar for bbPress

    Unsal Korkmaz
    Participant

    i am using that plugin in http://yerleske.net/pano/

    i want to use user’s avatars in forum pages too.. i tho its possible because we are calling buddypress with this plugin right?

    #49837
    Andy Peatling
    Keymaster

    Updates and fixes are coming, but I need to finish some things for 1.1 before I can do them.

    #49810
    r-a-y
    Keymaster

    Hey unsalkorkmaz,

    Submit a ticket (login with the same username and password as on buddypress.org) noting the problem and one of the BP devs will look to see if your problem can be duplicated.

    #49808
    r-a-y
    Keymaster

    The “Favorite Topics” functionality was broken when the BuddyPress forums changed the permalink structure from ID to pretty permalinks (I’m speculating, but I think I’m right).

    The groups hyperlink is a known bug as well.

    #49807

    In reply to: group wire problem

    Korhan Ekinci
    Participant

    Maybe this problem is also connected with this:

    https://buddypress.org/forums/topic/sigh-integration-cookie-problem-for-all-users-except-admin

    since you have a capital letter in your username and groups are connected with bbpress

    I am not sure though

    peterverkooijen
    Participant

    Is the hook to use this?:

    user_register

    Runs when a user’s profile is first created. Action function argument: user ID.

    So something like this?:

    <?php
    /*
    Plugin Name: Real Name Synchro
    Plugin URI: http://
    Version: v0.001
    Author: peterverkooijen
    Description: A plugin to store firstname and lastname from the fullname field in Buddypress registration in WPMU usermeta tables, based on examples in the <a href="http://www.devlounge.net">Devlounge</a> series.
    */
    if (!class_exists("RealNameSynchro")) {
    class RealNameSynchro {
    function RealNameSynchro() { //constructor

    }
    function xprofile_sync_wp_profile() {
    global $bp, $wpdb;

    if ( (int)get_site_option( 'bp-disable-profile-sync' ) )
    return true;

    $fullname = xprofile_get_field_data( BP_XPROFILE_FULLNAME_FIELD_NAME, $bp->loggedin_user->id );
    $space = strpos( $fullname, ' ' );

    if ( false === $space ) {
    $firstname = $fullname;
    $lastname = '';
    } else {
    $firstname = substr( $fullname, 0, $space );
    $lastname = trim( substr( $fullname, $space, strlen($fullname) ) );
    }

    update_usermeta( $bp->loggedin_user->id, 'nickname', $fullname );
    update_usermeta( $bp->loggedin_user->id, 'first_name', $firstname );
    update_usermeta( $bp->loggedin_user->id, 'last_name', $lastname );

    $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET display_name = %s WHERE ID = %d", $fullname, $bp->loggedin_user->id ) );
    $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_url = %s WHERE ID = %d", bp_core_get_user_domain( $bp->loggedin_user->id ), $bp->loggedin_user->id ) );
    }
    add_action( 'xprofile_updated_profile', 'xprofile_sync_wp_profile' );

    }

    } //End Class RealNameSynchro

    if (class_exists("RealNameSynchro")) {
    $dl_pluginSeries = new RealNameSynchro();
    }
    //Actions and Filters
    if (isset($dl_pluginSeries)) {
    //Actions
    add_action('user_register', array(&$dl_pluginSeries, 'xprofile_sync_wp_profile'), 1);
    //Filters
    }

    ?>

    Testing it now…

    Edit: Activating this plugin produces a white screen. Not a good start… :-(

    Where did I go wrong?

    #49801
    r-a-y
    Keymaster

    Hi fangonk,

    If you scrolled a little bit down, you would have seen this thread!

    https://buddypress.org/forums/topic/remove-image-upload-option-from-signup-only

    It’s a simple fix that uses CSS to hide the avatar fields on the registration page.

    Korhan Ekinci
    Participant

    Ok, I don’t know if this helps, but when I had wpmu 2.7.1 and used bbpress-integration plugin, I had to add

    define( 'COOKIEHASH', '####################' );
    define( 'COOKIE_DOMAIN', '.yourdomain.org' );
    define( 'SITECOOKIEPATH', '/' );
    define( 'COOKIEPATH', '/' );

    to the wp-config.php file and

    define( 'WP_AUTH_COOKIE_VERSION', 1 );

    to the bb-config.php file

    After upgarding to wpmu 2.8.1, I read here that I had to delete the line I added to the bb-config.php file. Could that be the problem???

    #49781
    plrk
    Participant

    BuddyPress is not used by many community sites because it is still a brand new product.

    #49782
    Mariusooms
    Participant

    There are other platforms and have tried a few myself. As new as the bp platform is, it is by far the quickest out of the box that enables much of what you need already (together with wpmu). However other platform might offer more fine grained control, but it comes with a hefty learning curve as the platform is simply more complex. The upside to bp’s less complex architecture makes it also easier to develop for.

    I’ll see if I can give some input on your requirements.

    The main feature is an easy and somewhat restrictive way to post content. The only thing girls can publish is pictures of outfits, and then tag the clothes (describe, tag, categorize…).

    It looks like you need a custom content type that omits the post message. Flutter allows you to create a specific post type. I haven’t tried it with wpmu. There is also a wpmu plugin called ‘toggle_meta_boxes’ which allows you to hide unneeded post boxes to make it super easy for your users to just upload content.

    We want to have some level of control here. BTW not all users can upload content.

    Since you only have one subject users post on I would recommend NOT giving every user a blog at sign up, but just let them post to the main blog. Keeps you in control over categories, tags, etc. Plus it lets you control the user level. I however you do want to give users a blog there are wpmu plugins which allow you to set blog defaults like categories, predefined pages and posts and such. Also you can make new blog users have an editor role rather than an admin role if you want to control what they can or can not do.

    The content published by everyone goes to the main page, same of today.

    This is done by buddypress through widgets or even custom loops if you are adventurous.

    No problem there.

    People con vote their fabs.

    I haven’t looked at this, but I imagine there would be a wp plugin which would let users vote on posts. If you can find a vote plugin that serves an RSS feed you could pull that into the bp user profile. EVen link it to the activity stream with a small custom plugin.

    When user is logged in, she sees the content of the girls she is following (not pictures of everyone, just pictures of the ones that inspire the user).

    In bp through making friends with other users you can follow the activity of your friends only. At the moment the activity stream is text only, afaik, but I think images in the activity stream is in the pipeline?

    User profile is built by the outfits she publishes

    The profile page shows the latest activity, blog posts, wire messages, etc. of the profiles user.

    and the outfits she favorites.

    This is the most dificult part, since I haven’t looked into it. Assuming you can find a good vote/favorite plugin it should be doable.

    You can search for/discover/subscribe to trends, types of clothes, styles, colors, people…

    This is where bp shines as the search is very well done. Combine it with bp_contents plugin which allows your users to tag themselve, groups, blog and add categories…your archiving possibilities are endless.

    Some pitfalls (already mentioned):

    Privacy controls, inappropriate content flagging (is coming in 1.1 though), it is still not an out of the box solution (however for you requirements there is none that I can think of).

    There are still even other approaches when I think about it, I would recommend wp and bp in a heartbeat. Especially since the backend of both are really solid. Plugins are installed and upgraded easily. It is a widely supported and growing platform and would not hesitate to recommend it to you.

    I hope this helps a little bit.

    #49777
    julient
    Participant

    I removed the plugins one by one, leaving only the buddypress directory, and renaming mu-plugins in mu-plugins2, but I still can’t login as Site admin…

    I’m still trying to find out what’s going on. If you have an idea…

    Thanks again

    Julien

    #49776

    In reply to: Dashboard ?

    Mariusooms
    Participant

    Check out the skeleton component plugin. I teaches you how to make a bp component. It has examples where it sets up two custom pages with according links, etc. That’s how I re-created the dashboard, but r-a-y’s would also work.

    The skeleton component takes some time studying as it will go over much more than just setting up page templates, but it is a good learn if you are developing with bp and creating a dashboard component would be a good entry level start.

    #49775
    julient
    Participant

    Hi and thanks for your answers. I’ll try to remove the plugins and see if I can find out the one causing the issue.

    Meanwhile, here are the answers to the common questions.

    Julien

    1. Which version of WPMU are you running?

    2.7.1

    2. Did you install WPMU as a directory or subdomain install?

    Director

    3. If a directory install, is it in root or in a subdirectory?

    Root

    4. Did you upgraded from a previous version of WPMU? If so, from which version?

    Yes, from 1.5.1 through 2.6.5

    5. Was WPMU functioning properly before installing/upgrading BuddyPress?

    Yes

    6. Which version of BuddyPress (BP) are you running?

    1.0.2

    7. Did you upgraded from a previous version of BP? If so, from which version?

    No, first install

    8. Do you have any plugins other than BuddyPress installed and activated?

    Many. I won’t list them here. I’ll try first to remove them to find out if it may cause the issue.

    9. Are you using the standard BuddyPress themes or customized themes?

    Standard, we haven’t customized anything yet

    10. Have you modified the core files in any way?

    11. Do you have any custom functions in bp-custom.php?

    No

    12. If running bbPress, which version?

    No bbpress (yet)

    13. Please provide a list of any errors in your server’s log files.

    #49763
    Stupidism
    Participant

    Actually nevermind the community part, I ‘ll just structure the site like leadpress.com (not all under community)

    Thank you for the help Ray and John.

    #49761
    Dolugen
    Participant

    I hope it was brief and descriptive: https://trac.buddypress.org/ticket/880 (submitting a bug ticket isn’t that hard at all :)

    #49758
    Stupidism
    Participant

    I still don’t get why when I go to domain.tld/home the members link lights up (in the BuddyPress Home Theme). And how do I make the community WordPress Page appear instead of a page listing the folders inside the community folder (forums).

    #49759

    If you want all of the directories to be underneath the community page, I would do exactly the same thing you just did to make the community page, and make members/groups/blogs directory pages. I’m not sure there’s a way to contain ALL of BuddyPress within a subdirectory, considering that your users and groups and blogs are all linked off of the root of the site, and not the root of a specific blog, subdomain, or subdirectory.

    #49757
    Stupidism
    Participant

    So I set the Members link to

    domain.tld/community/members/

    But when I click it, it redirects to domain.tld/members/admin

    The groups and blogs link work but don’t light which isn’t that bad.

Viewing 25 results - 63,501 through 63,525 (of 69,044 total)
Skip to toolbar