Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 55,401 through 55,425 (of 69,016 total)
  • Author
    Search Results
  • sueme
    Participant

    Didn’t get a reply so I tried it anyway. It didn’t work for me.

    1. The top of my page displayed the following message function my_bp_override_core_domain() { $domain = get_bloginfo('url'); return $domain; } add_filter('bp_core_get_root_domain','my_bp_override_core_domain')

    2. The buddypress folder still opened as mysite/wordpress rather than just mysite.

    #71052
    peterverkooijen
    Participant

    I would need this as well at some point

    Say you have a network of four sites. When a user tries to log in one of the sites (‘New Community’) with a username and password from one of the other three sites, he gets this:

    ERROR: Invalid username. Lost your password?

    Would it be very complicated to write a plugin that checks if the entered username exists in the other three databases? And then verify the user’s password by checking in that same database? And then enter that user’s data, including username + pass, into the ‘New Community’ database?

    Could it copy some functions/code from the new Facebook Login plugin?

    #71051
    rich! @ etiviti
    Participant

    Expected behavior as activity commenting and forum discussion are separate. (only a one way tie-in when a new post/reply is made and the content is sent to the activity stream). You can disable activity commenting on forum posts/topics and blogs postings.

    I updated

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

    which now includes an activity subplugin -> will pull in activity comments made to a topic post (no reply ability but at least someone can see the conversation from the stream)

    #71050
    Andrea Rennick
    Participant

    If you did that, you’d have exactly the same BP on every single site – no separation of users.

    #71048
    mcrustk2
    Participant

    Im having a very similar problem.

    I have installed WordPress MU & Buddypress on a sub domain:

    http://site.mydomain.com

    When I login I can click on ‘My Account’ if I click ‘Edit Profile’ I get a 404 error. Any of the other my account options such as change signature or change avatar works OK.

    Also noticed that if using the Album+ plugin, when I click upload a picture it does the upload but then immediatly shows a 404.

    Assume this is related in some guise to the subdomain. Maybe WordPress/Buddypress is best left on the root?

    Just installed:

    WordPress MU 292

    BuddyPress 123

    IIS6 (Hosted/Helm) PHP 5

    #71047
    Bowe
    Participant

    Ok I’ve got everything running.. But there is a problem with the activity stream. Because updates get posted in the language of the current user, you get a very weird activity stream. You get activity stream updates in different languages all mixed up. Example:

    http://emberapp.com/bowromir/images/firefox-17

    Can this be fixed?

    #71045
    Andy Peatling
    Keymaster

    If you are using hooks that fire before bp_init then you can keep them in the loader file. You must be very sure that aren’t calling any BuddyPress functions though.

    If you’re not sure just deactivate buddypress with your plugin active and see if it crashes.

    David Lewis
    Participant

    I leveraged the existing drop down method in BuddyPress and created the following code. Three files in my child theme. Modify for your needs.

    • header.php
    • _inc/css/custom.css
    • _inc/scripts/nav.js

    header.php

    <div id="wp-nav-bar">
    <ul id="nav" class="main-nav">
    <!-- Community Drop Down -->
    <li <?php if (
    bp_is_page( BP_ACTIVITY_SLUG ) ||
    bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ||
    bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() ||
    bp_is_page( BP_FORUMS_SLUG ) ||
    bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
    <a href="<?php echo site_url() ?>/<?php echo BP_ACTIVITY_SLUG ?>/" title="<?php _e( 'Community', 'buddypress' ) ?>"><?php _e( 'Community', 'buddypress' ) ?></a>
    <ul>

    <?php if ( 'activity' != bp_dtheme_page_on_front() && bp_is_active( 'activity' ) ) : ?>
    <li<?php if ( bp_is_page( BP_ACTIVITY_SLUG ) ) : ?> class="selected"<?php endif; ?>>
    <a href="<?php echo site_url() ?>/<?php echo BP_ACTIVITY_SLUG ?>/" title="<?php _e( 'Activity', 'buddypress' ) ?>"><?php _e( 'Activity', 'buddypress' ) ?></a>
    </li>
    <?php endif; ?>

    <li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ) : ?> class="selected"<?php endif; ?>>
    <a href="<?php echo site_url() ?>/<?php echo BP_MEMBERS_SLUG ?>/" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'Members', 'buddypress' ) ?></a>
    </li>

    <?php if ( bp_is_active( 'groups' ) ) : ?>
    <li<?php if ( bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() ) : ?> class="selected"<?php endif; ?>>
    <a href="<?php echo site_url() ?>/<?php echo BP_GROUPS_SLUG ?>/" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a>
    </li>

    <?php if ( bp_is_active( 'forums' ) && bp_is_active( 'groups' ) && ( function_exists( 'bp_forums_is_installed_correctly' ) && !(int) get_site_option( 'bp-disable-forum-directory' ) ) && bp_forums_is_installed_correctly() ) : ?>
    <li<?php if ( bp_is_page( BP_FORUMS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
    <a href="<?php echo site_url() ?>/<?php echo BP_FORUMS_SLUG ?>/" title="<?php _e( 'Forums', 'buddypress' ) ?>"><?php _e( 'Forums', 'buddypress' ) ?></a>
    </li>
    <?php endif; ?>
    <?php endif; ?>

    <?php if ( bp_is_active( 'blogs' ) && bp_core_is_multisite() ) : ?>
    <li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>>
    <a href="<?php echo site_url() ?>/<?php echo BP_BLOGS_SLUG ?>/" title="<?php _e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?></a>
    </li>
    <?php endif; ?>

    </ul>
    </li>
    <?php do_action( 'bp_nav_items' ); ?>
    </ul>
    </div>

    custom.css

    /* Subnav */
    ul#nav li ul {width: 30.7%;}
    ul#nav li ul li {float: none; width: 100%;}
    ul#nav li ul li a {background: none !important; padding: 5px 15px;}
    #wp-nav-bar ul li ul {position: absolute; left: -999em; z-index: 1;}
    #wp-nav-bar ul li ul li a span {display: none;}
    #wp-nav-bar ul li:hover ul,
    #wp-nav-bar ul li li:hover ul,
    #wp-nav-bar ul li.sfhover ul,
    #wp-nav-bar ul li ul li.sfhover ul {left: auto;}

    nav.js

    startList = function() {
    if (document.all&&document.getElementById) {
    navRoot = document.getElementById("nav");
    for (i=0; i<navRoot.childNodes.length; i++) {
    node = navRoot.childNodes;
    if (node.nodeName=="LI") {
    node.onmouseover=function() {
    this.className+=" sfhover";
    }
    node.onmouseout=function() {
    this.className=this.className.replace(" sfhover", "");
    }
    }
    }
    }
    }
    window.onload=startList;

    j(document).ready( function() {
    /* Admin Bar Javascript */
    j("#wp-nav-bar ul.main-nav li").mouseover( function() {
    j(this).addClass('sfhover');
    });

    j("#wp-nav-bar ul.main-nav li").mouseout( function() {
    j(this).removeClass('sfhover');
    });
    });

    #71043
    rich! @ etiviti
    Participant

    found the error with activity and quote being enabled at the same time (what i get for copying code and not changing the wp_enqueue_script name param. (give it 20 mins or so to update in the repo to 0.2.1)

    #71042
    MrMaz
    Participant

    @stwc, foxly

    That defect was fixed in the 0.3 branch a while back, I just haven’t put out a point release yet.

    https://plugins.trac.wordpress.org/changeset/215107/buddypress-links/branches

    #71041

    In reply to: Groups in blogs

    Kye
    Participant

    Whilst not strictly what I was looking for there is a partial solution:

    wp-config.php

    define ( ‘BP_ENABLE_MULTIBLOG’, true );

    This will allow Buddypress to run on site wide blogs rather than just on the root domain so in theory you could have a website just create a manual link to their group with their own mapped or sub domain. not sure how well all themes would work with this though, I guess it won’t hurt me to try at some point :-)

    #71040
    Kye
    Participant

    Yeah, is there an easy way to turn that tab off without altering the code. Users can post from there as well and with this being a new feature (the buddypress part) it kind of makes the site look empty of users.

    Q. Can a user post to a group he’s not a member of?

    I noticed after installing buddy that if I went to this directory and clicked “Start Thread” I could start a new thread in the one and only group which had been set up in my install, the problem is though that this one group didn’t have “Enable discussion forum” under the groups admin, general settings page and so it shouldn’t have a forum yet people could still post to it.

    I presume this must be a bug as it would seem a little off that the group has forums turned off but yet a user can post to that groups forums from the forum directory tab?

    #71038
    rich! @ etiviti
    Participant

    You can tweak the timeout/sensitivity with hoverintent in the js file

    2. Instead of disrupting the page layout with an expanding div, do an overlay div like snap,

    i have a firefox extension that does an overlay pop-up div to preview a thread – the problem is determining the pop above or below the link depending where it is placed on the page (and scroll), for some reason I was unable to get this to work properly across all browsers for this plugin. (i think chrome has issues with scrolltop?)

    So the div methods meets my needs – if someone out there wants to code in a proper div with that requirement working then i’ll add it in.

    1. Instead of making the whole title “hot” for the mouseover, append a small mouseover [preview link] to the end of the topic title.

    a preview button would be nice – though with the way i’m pulling data and passing it along – it was easier to use the a href.

    Bug report: Activating ‘BuddyPress Forums Extras – Activity’ kills Quoting on my install. Same issue existed with 0.1.9b3.

    oh bugger – i didn’t even check this. i’m able to reproduce it so i’ll get a fix up today.

    Not sure what ‘Activity’ is meant to do, actually, so I’m not too worried — just wanted to check it out.

    Well this is just a ‘in theory’ plugin – so if a forum post has some sort of activity stream replies/comment on it – you can view those comments directly from the forum thread (or be aware what is being talked about in the activity stream)

    #71036
    Kye
    Participant

    @ Jeff

    Couldn’t Buddypress be used with the domain mapper plugin to have it enable for each domain? Or the multi-domain plugin for offering blogs on different domains from one install?

    #71034
    Anton
    Participant

    I still can’t get the filter to show link votes on viewing a single link. If “Show link votes” is selected from the drop down, this is displayed “Sorry, there was no activity found. Please try a different filter.”

    I have tested this on the latest version single wp site and on a wpmu site and the results are the same.

    #71032
    3sixty
    Participant

    Topic Preview is amazing! I’m still thinking a little about the implementation and how I might tweak it, though. The expanding DIV is clever but a little jarring, and there is no way for users to avoid it. My recommendation would be:

    1. Instead of making the whole title “hot” for the mouseover, append a small mouseover [preview link] to the end of the topic title. (To conserve clutter, eventually it could optionally be linked to the new post indicator I’m working on)

    2. Instead of disrupting the page layout with an expanding div, do an overlay div like snap, http://www.snap.com/snapshots_faq.php

    #71029
    jozik
    Participant

    @Mariusooms

    This can be added, we will try to include it in next release (before that we’re waiting for some more feedback).

    I guess best would be to check if user is coming from some outside URL, if so – to redirect him to preferred language, otherwise let him switch languages as usual.

    @Sanny

    Thanks for valuable feedback.

    BP is not wrapping extra profile fields (title and description) in textdomain – you can’t get it translated (for now). We will try to add support for this – to register extra field’s titles and labels (descriptions), so it can be translated via WPML’s ‘string translation’.

    #71026

    In reply to: BuddyPress Like

    3sixty
    Participant

    How is BuddyPress “Like” better than the existing BuddyPress Favorites functionality?

    I was initially excited about this plugin, and I really appreciate Hempsworth’s efforts because it works great… but I kind of agree with r-a-y in that it’s probably best to extend the existing BuddyPress “favorite” functionality:

    Hey Hempsworth, looks good!

    But, do you think it would have made more sense to take advantage of BP’s already-available favorite button?

    I’m happy to be convinced otherwise, but at the moment I don’t see the point, and if even I can’t see the point, then my users are going to be freaked out. :)

    #71021

    In reply to: WP-FB connect profile.

    joshmac
    Participant

    @jimcale, you are getting those spaces because in the settings Disable Buddypress Filters is checked. This should be unchecked.

    #71020
    Paul Wong-Gibbs
    Keymaster

    If you cannot rule out everything else other than BuddyPress, we aren’t going to track it down.

    #71017
    arjdan
    Participant

    Now it works, simply I disable Auto-embeds in Media Options.

    Thanks

    #71014
    foxly
    Participant

    Regarding problems with the BuddyPress Links plugin… ;)

    Found the defect.

    The problem is being caused by two blocks of code inside the BPLinks plugin that do not account for the situation where the BuddyPress administrator disables “friend” capabilities for the site.

    When friend capabilities are disabled, calling the friends_check_friendship() function will crash the user thread. We handle this problem in BP Album+ by wrapping all calls to this function in a function_exists(‘friends_check_friendship’) statement, only calling the function if it is enabled.

    This is a sneaky, subtle defect that could easily be missed during testing; fortunately, BPLink’s clean, well-documented source code made it easy to isolate and correct the problem.

    Here’s a simple patch:

    1) In “bp-links-classes.php” at line 650

    REPLACE:

    if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {

    $status_opts[] = self::STATUS_FRIENDS;

    }

    WITH:

    if (function_exists(‘friends_check_friendship’)) {

    if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {

    $status_opts[] = self::STATUS_FRIENDS;

    }

    }

    2) In “bp-links-core.php” at line 1128

    REPLACE:

    return friends_check_friendship( $user_id, $link->user_id );

    WITH:

    if (function_exists(‘friends_check_friendship’))

    return friends_check_friendship( $user_id, $link->user_id );

    else

    return null;

    ============================================================================

    WordPress MU 2.9.2

    BuddyPress Version 1.2.3

    BuddyPress Links Version 0.3.2

    BP Album+ 0.1.8 beta

    ^F^

    #71013
    foxly
    Participant

    @stwc – Found the defect.

    The problem is being caused by two blocks of code inside the BPLinks plugin that do not account for the situation where the BuddyPress administrator disables “friend” capabilities for the site.

    When friend capabilities are disabled, calling the friends_check_friendship() function will crash the user thread. We handle this problem in BP Album+ by wrapping all calls to this function in a function_exists(‘friends_check_friendship’) statement, only calling the function if it is enabled.

    This is a sneaky, subtle defect that could easily be missed during testing; fortunately, BPLink’s clean, well-documented source code made it easy to isolate and correct the problem.

    Here’s a simple patch:

    1) In “bp-links-classes.php” at line 650

    REPLACE:

    if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {

    $status_opts[] = self::STATUS_FRIENDS;

    }

    WITH:

    if (function_exists(‘friends_check_friendship’)) {

    if ( $link_owner_user_id && $link_owner_user_id != $bp->loggedin_user->id && friends_check_friendship( $link_owner_user_id, $bp->loggedin_user->id ) ) {

    $status_opts[] = self::STATUS_FRIENDS;

    }

    }

    2) In “bp-links-core.php” at line 1128

    REPLACE:

    return friends_check_friendship( $user_id, $link->user_id );

    WITH:

    if (function_exists(‘friends_check_friendship’))

    return friends_check_friendship( $user_id, $link->user_id );

    else

    return null;

    ============================================================================

    WordPress MU 2.9.2

    BuddyPress Version 1.2.3

    BuddyPress Links Version 0.3.2

    BP Album+ 0.1.8 beta

    ^F^

    raynerlim36
    Participant

    Someone help me please! I’m rushing!

    #71007
    foxly
    Participant

    @stwc – Sounds like you found a defect in the BP Album+ plugin.

    I’m on it!

    ^F^

Viewing 25 results - 55,401 through 55,425 (of 69,016 total)
Skip to toolbar