Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 93,476 through 93,500 (of 94,540 total)
  • Author
    Search Results
  • #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

    #2978
    gpo1
    Participant

    I’ve been liasoning with this developer to adapt this great plugin for BP.

    And now its in beta stage, so go the site and contact him to test http://www.phpvrouwen.nl/

    This is a fully integrated twitter plugin for BP

    #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

    #2973
    Anointed
    Participant

    I know it’s probably not going to be cheap, but I am willing to pay for a wordpressmu to vbulletin bridge if anyone here has the ability to write such code.

    I am currently using the non-mu bridge for vbulletin and it works perfectly for me. The author said the bridge would not work for mu, and will not port it over. Frankly, I have not dug through mu enough to have a clue as to why it won’t work with the bridge. But I guess there is something majorly different between mu/non-mu setups.

    I’m guessing anyone good enough to write buddypress would probably have no problem writing a vbulletin bridge. I realize it’s gonna be time consuming and will probably cost me hundreds, which for a complete solution I am more than willing to pay.

    thanks

    shawn

    webmaster @ anointed.net

    #2972
    Anointed
    Participant

    Ok, I have used wordpress, not mu, for some time now and I’m very used to it.

    I thought I had installed mu correctly along with buddypress today. However when I go to a site that I create after the original, it’s not right. I get a copy of the original site, instead of the posts I made in the new site.

    Life is just to short to mess with this.

    Are any of the ‘trusted’ moderators here willing to install mu with buddypress for me?

    I am of course willing to pay for it.

    I have my own dedicated server colo so I have complete access. I’m guessing that nothing more than ftp access would be needed, as the same server runs wordpress-non-mu perfectly.

    anyhow here’s to hoping someone here needs some quick work.

    thanks

    shawn

    webmaster@anointed.net

    #2971
    Per Søderlind
    Participant

    change_newblog_defaults will remove the default urls from the users blog and instead add a link back to the users BP profile

    Save the code below to mu-plugins/change_newblog_defaults.php

    <?php
    require_once( 'bp-core.php' );
    function change_newblog_defaults( $blog_id, $user_id )
    {
    global $current_site;
    switch_to_blog($blog_id);

    //--change default blogroll
    wp_delete_link(1); //delete WordPress.com blogroll link
    wp_delete_link(2); //delete WordPress.org blogroll link
    //add a link to the users profile page
    wp_insert_link(array('link_name' => __('My Profile', 'buddypress'), 'link_url' => bp_core_get_user_domain($user_id)));
    //uncomment the line below if you want a link back to your main site
    /*wp_insert_link(array('link_name' => $current_site->domain, 'link_url' => 'http://' . $current_site->domain . $current_site->path));*/
    //--end
    restore_current_blog();
    }
    add_action( 'wpmu_new_blog', 'change_newblog_defaults', 10, 2 );
    ?>

    edit: the code above is a modified version of http://mu.wordpress.org/forums/topic.php?id=9369#post-56231

    #2970
    Anonymous User 303747
    Inactive

    Hi,

    I’m messing with BuddyPress and I am running out of ideas.

    Basically, I’m trying to limit the display if posts in the Recent Blog Posts Widget to 1 blog_id and 2 categories or to 2 blog_ID’s. Either way works for me but I’d be interested in both scenarios. In a regular WP loop, this would be easy to do but man, this widget business is a whole different matter for me.

    Can anyone please provide some pointers? I have a feeling it’s dead simple (if you know how, isn’t that always the case) – but I’m getting stuck.

    TIA

    iseec
    Member

    Hello all buddies from BuddyPress,

    Thanks for great buddypress,

    I have enabled my buddypress group forum, and the bbpress can be accessed from domain.com/forums

    But how if i want to have two forum type? The bbpress for group forum and site wide forum?

    Should i install 2 instance of bbpress? And how to add the second for site wide forums after i configure the buddypress for group forum?

    The example buddypress site that has group forum and site wide forum:

    http://gorgeousgamers.com/beta/

    Thank you for any feedback

    usergnome
    Member

    Hi there – I have a curious issue that has just popped up this evening.

    Background: Users can register user accounts on the main blog (blog creation disabled) and can contribute posts.

    The issue: If a user is not logged in and they click on a post (by any user) they get redirected to the login page.

    If the user is logged in and they click on a post (by any user) – they get re-directed to their member homepage eg: /members/username/

    So basically – posts cannot be accessed :~

    I have de-activated all plugins > cleared cookies > same problem.

    Can anybody offer any insight into this issue?

    I have latest versions of MU (2.6.5) and BuddyPress (1.0b1) installed.

    Thanks,

    Al

    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.

    david-titus
    Member

    Hi all,

    I installed BuddyPress on two entirely different servers today, one for testing and one for a project I’m working on. Everything seems to work fine except the wire aspect. In both instances when I try to post something to the wire I get “Wire message could not be posted. Please try again.”

    Any idea what’s causing that? I suspect it might be something simple since it happens on both installs.

    Thanks,

    David

    TheMadcore
    Participant

    Hi.

    I´m creating an art community with wpmu and buddypress, inspired on DeviantART.

    I want to show some user information on the frontpage of the user blog. Members have one blog assigned by default, and they can´t create another authors on them, and can´t give editor privileges to other users, so they are the only user and admin of their assigned blog. With that, I made some tweaks like when you want to view and author page on the blog, like member.site.com/author/member, is 301 redirected to their profile (site.com/members/member).

    In the blog frontpage, the home.php file, I want to show some info from the buddypress profile, like the activity and the wire. I know the tags, but I can´t figure how to make them work. Anyone can help me in that way?

    Thanks for your time.

    nicolagreco
    Participant

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

    #35757

    In reply to: Featured Groups idea

    nicolagreco
    Participant
    #2958
    nicolagreco
    Participant

    As discussed on http://buddypress.org/forums/topic.php?id=690,

    i wrote this plugin that shows a definied litters’ number of last topics,

    here the bpdev-plugin link http://buddypressdev.org/plugins/bpdev-forums-excerpt/

    Thanks guys,

    Nicola Greco,

    BP Guru

    #35756

    In reply to: Featured Groups idea

    Mike Pratt
    Participant

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

    Cristiano
    Participant

    I will pay $100 for a template clone of Orkut for Buddypress.

    Anonymous User 303747
    Inactive

    I installed BuddyPress out of the combo package – all is running well. I’m doing this on a test server so I’d like to do a bit more testing to help the community along. Can anyone tell me how to best go about upgrading frequently to the latest in trunk?

    In addition to downloading files from trunk and copying them over (I got that part), I am assuming the database needs an upgrade whenever I move to a new version as well. Can anyone provide some pointers on how to do this?

    Anonymous User 303747
    Inactive

    I installed BuddyPress out of the combo package – all is running well. I’m doing this on a test server so I’d like to do a bit more testing to help the community along. Can anyone tell me how to best go about upgrading frequently to the latest in trunk?

    In addition to downloading files from trunk and copying them over (I got that part), I am assuming the database needs an upgrade whenever I move to a new version as well. Can anyone provide some pointers on how to do this?

Viewing 25 results - 93,476 through 93,500 (of 94,540 total)
Skip to toolbar