Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 73,201 through 73,225 (of 73,985 total)
  • Author
    Search Results
  • #35863
    Trent Adams
    Participant

    This topic might get more attention if you post it in the WPMU forums as it isn’t a buddypress related issue.

    https://mu.wordpress.org/forum/

    #35859

    In reply to: strange admin address

    nickmu
    Member

    burtadsit

    I’m sorry…i’m new to some of the web jargon. I’m a musician. I understand now what you guys mean re: commenting out. I commented those lines out and its still sending all emails from bluehost (not to mention..its taking about an hour to two to receive them.

    I’m sure there is a simple resolution but it seems to be over everyone’s head.

    Chris, what lines did you comment out? I’d really appreciate anyones help.

    I can’t have buddypress sending emails from a bluehost address to people that sign up on my site …not to mention it taking an hour to get their confirmations etc.

    #35854
    Burt Adsit
    Participant

    In bp-core-classes.php is BP_Core_User

    /**
    * BP_Core_User class can be used by any component. It will fetch useful
    * details for any user when provided with a user_id.
    *
    * Example:
    * $user = new BP_Core_User( $user_id );
    * $user_avatar = $user->avatar;
    * $user_email = $user->email;
    * $user_status = $user->status;
    * etc.
    *
    * @package BuddyPress Core
    */

    Lots of stuff in that class. You need a user id to instantiate one.

    #35852

    In reply to: Friends List

    Burt Adsit
    Participant

    I can’t find any tickets in Trac about this issue. Why don’t you start one? Make sure you describe your install environment clearly.

    https://trac.buddypress.org/newticket

    #35848
    Burt Adsit
    Participant

    Mike the idea is that if I want to change the function of a menu item, I have to replace the menu item with something of my own. I want to change “My Account” on the bar and add a new item underneath entitled: “I Owe Mike How Much!?”. I have to replace the entire “My Account” menu item since the granularity of the actions are at the top level menu item only.

    I can slide new menu items in between existing items easily but that’s the way it has to happen for drop down items.

    I create a plugin that runs in /mu-plugins since I want this to run all the time for all users on all blogs. It’ll get run every page load.

    An example is replacing the bp logo image in the bar. Same technique for other menu items. The item gets rendered through the function:

    bp_adminbar_logo() in bp-core-adminbar.php

    This function gets registered in mu by us telling mu about this function and when to trigger it:

    add_action( ‘bp-adminbar-logo’, ‘bp_adminbar_logo’ ) at the bottom of bp-core-adminbar.php

    To replace the logo with our own logo or do something completely diff like just use the word ‘Home’, whatever we unregister the existing fn, register our own that replaces the old fn and does something different. Like below:


    function oci_adminbar_logo() {
    global $bp;
    echo '<a href="' . $bp['root_domain'] . '"><img id="admin-bar-logo" src="' . apply_filters( 'bp_admin_bar_logo_src', site_url( MUPLUGINDIR . '/common-interest/images/oci_home.gif' ) ) . '" alt="' . apply_filters( 'bp_admin_bar_logo_alt_text', __( 'BuddyPress', 'buddypress' ) ) . '" /></a>';
    }

    remove_action('bp-adminbar-logo','bp_adminbar_logo');
    add_action('bp-adminbar-logo','oci_adminbar_logo');


    The above says “don’t pay any more attention to the function bp_adminbar_logo() when the action ‘bp-adminbar-logo’ occurs, pay attention to my oci_adminbar_logo() fn and do that instead.

    You have to replace the *entire* menu item with something of your own. Clearer? No?

    Burt Adsit
    Participant

    :D

    #35845

    In reply to: Change Blog Avatar

    Anonymous User 303747
    Inactive

    OK -that’s easy enough :)

    I’ll check if there’s an enhancement request for this and if not, I’ll create one.

    UPDATE: there’s a feature request at https://trac.buddypress.org/ticket/192

    #35839

    In reply to: Friends List

    altesc
    Participant

    Hello, I am having the same problem, using Buddypress with directories instead of subdomains. When I create a group I can’t invite any members because my friends list is empty although I do have several friends. I am developing a site at http://www.conexionesbcn.com

    #35837
    gpo1
    Participant

    All you need to do is link on the developers link for details

    http://www.phpvrouwen.nl/

    #35832
    seppolaatle112
    Participant

    Thanks for the reply, but that’s not what I need… I know what I can use to get the full “<img src=”http://your.site/wp-content/blogs.dir/blog_id_here/files/avatars/user_id_here/user_avatar.jpg&#8221; alt=”” class=”avatar photo” width=”50″ height=”50″ />” , but I need something that only gives me the image-url, in this case, “http://your.site/wp-content/blogs.dir/blog_id_here/files/avatars/user_id_here/user_avatar.jpg…&#8221;

    Is there anything I can do to make Buddypress return only the image url?

    Trent Adams
    Participant

    If you leave your contact information, I can close this thread as this is a support forum and not a job board.

    #35826
    Trent Adams
    Participant

    I will test it for you. Send it to my at the address on my contact page:

    http://trentadams.ca/contact/

    #35809
    gpo1
    Participant

    Any interested testers out there for this great plugin, so that it could be released asap?

    #35808
    nicolagreco
    Participant

    PerS add this plugin on bpdev plugins directory here http://buddypressdev.org/add-plugin

    #35790
    fishbowl81
    Participant

    This post maybe a little more clear, as it has a full working music player.

    https://buddypress.org/forums/topic.php?id=604#post-3382

    #1, the 2 is priority of the filter.

    #2, I have been lazy and just made everything inside of the “social details” group active links. In the future I maybe validating them with some regular expressions or substring checking.

    #3, check for an @ and at least 1 period in the string and no spaces? There are some very complex regular expressions which can validate e-mail addresses, but regular expressions are slower then substrings.

    Brad

    http://gorgeousgamers.com/beta

    fishbowl81
    Participant

    Those “steps” are for using the buddypress code, ie xml-rpc communication inside of groups. If you theme the general bbpress install to match your buddypress site then you won’t need to enable xmlrpc on the general site, just do the intergration.

    I think someone will develop a modification of the groups, to be a general group pretty soon. If this is the case, then you would need to do those steps for both bbpress installs.

    Hope that makes sense,

    Brad

    http://gorgeousgamers.com/beta

    #35786
    fishbowl81
    Participant

    Here it is, save as bp-music.php and copy into your muplugins

    you must create a profile details group “Audio Details”, and all values will be replaced by a music player.

    Check out a working copy on:

    http://gorgeousgamers.com/beta/members/bradmkjr/

    Brad

    http://gorgeousgamers.com/beta/

    <?php

    /*

    * Created on Dec 29, 2008

    *

    * Project Buddypress Addons

    *

    * File bp-music.php

    *

    */

    function bp_profile_music_player( $field_value =””, $field_type = “”, $field_id = “” ) {

    if($field_value == “”)

    return “Nothing to show”;

    else

    { // clean up input

    return “<script type=’text/javascript’>

    var amzn_wdgt={widget:’MP3Clips’};

    amzn_wdgt.tag=’gorgeousgamers-20′;

    amzn_wdgt.widgetType=’ASINList’;

    amzn_wdgt.keywords='”.addslashes($field_value).”‘;

    amzn_wdgt.title=’What I’ve been listening to lately…’;

    amzn_wdgt.width=’250′;

    amzn_wdgt.height=’250′;

    amzn_wdgt.shuffleTracks=’True’;

    amzn_wdgt.marketPlace=’US’;

    </script>

    <script type=’text/javascript’ src=’http://wms.assoc-amazon.com/20070822/US/js/swfobject_1_5.js’&gt;

    </script>”;

    }

    }

    function bp_profile_music_groups( $group_name =””) {

    if($group_name == “Audio Details”){

    remove_filter( ‘bp_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 2);

    add_filter( ‘bp_the_profile_field_value’, ‘bp_profile_music_player’, 2, 3);

    }else{

    add_filter( ‘bp_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 2, 3);

    remove_filter( ‘bp_the_profile_field_value’, ‘bp_profile_music_player’, 2);

    }

    return $group_name;

    }

    add_filter( ‘bp_the_profile_group_name’, ‘bp_profile_music_groups’, 10, 1 );

    ?>

    iseec
    Member

    Thanks Brad,

    I is still not clear in my mind the difference for buddypress in group forum and site wide forum configuration

    Should i still do these steps?

    1) you have bbpress installed and a new user created on the “bbPress” side which you granted “administrator” rights by the keymaster

    2) you copy the “buddypress-enable.php” plugin out of the bp-forums folders and copy it into your /my-plugins/ folder (create if it doesn’t exist) so it is /my-plugins/buddypress-enable.php

    3) Enable the plugin through your bbPress administration side for plugins

    4) Edit “settings” to enable xmlrpc and pingbacks (both)

    5) edit your bb-config.php and just before the closing php call at the bottom of the page put:

    $bb->bb_xmlrpc_allow_user_switching = true;

    Do you still do these steps? Or skip these steps and just installed the bbpress and do common wordpress integration like cookie and user integration?

    Thank you

    #35782

    I can help you with this.. I installed buddypress successfully and you can see it in action at http://ignitte.in/

    contact me at coolkarthik88@gmail.com

    dyzine
    Member

    im a professional designer/developer with a little over a decade of experience, and i can tell you that you’re offering too little. i’m not negotiating as my plate is already very full, but quality work from a professional would require a minimum budget of around $500, and a more realistic budget of around $800 for such work. if you dont have this, then i’d suggest waiting for buddypress’ popularity to grow a bit more over the next couple months, i’m sure there will be all kinds of custom themes and plugins becoming available for small fees…

    usergnome
    Member

    Thanks :) wp-admin/options.php sorted it.

    nicolagreco
    Participant

    I think that a good webdesigner want mooore (3 zeros)

    #35757

    In reply to: Featured Groups idea

    nicolagreco
    Participant
    #35756

    In reply to: Featured Groups idea

    Mike Pratt
    Participant

    Thanks Gerbilo, the plugin is now listed at BuddyPressDEV http://buddypressdev.org/plugins

    #35746
    gpo1
    Participant

    Well done… Could you share how it’s done?

Viewing 25 results - 73,201 through 73,225 (of 73,985 total)
Skip to toolbar