Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 65,876 through 65,900 (of 94,539 total)
  • Author
    Search Results
  • #94031

    In reply to: Translating buddypress

    John
    Participant

    @rogercoathup Any clue on how I could modify the plug-in to fit Buddypress 1.2.5.2 ?
    Or how to create one ? I don’t need anything fancy, I just want to offer my buddypress’s user the choice to choose in which language they want their buddypress functions.

    What plug-in used Marco Rossi ? Very nice site by the way :)
    All of this from the default buddypress theme ?

    #94030
    rich! @ etiviti
    Participant

    could redirect before loading the single/activity/permalink template -> `bp_core_redirect( $bp->loggedin_user->domain );`

    just hook on the action bp_activity_screen_single_activity_permalink

    #15521
    Bill Childs
    Participant

    This is regarding kindiefest.com.

    We had a working BuddyPress installation and then the hosting account got hacked. After some wrangling, we were able to get the domain back and had a pretty recent backup. We now have WordPress back up and running, BuddyPress is installed, and all of the users are there, but all of the BuddyPress links went to a 404. I mucked around a bit in the .htaccess file as suggested here:

    http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/404-on-every-link/

    and now get a 500 error instead. The .htaccess file right now is:

    # BEGIN WordPress
    RewriteBase /wordpress

    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

    # END WordPress

    I’d sure appreciate any hints. Thanks!

    #94028

    In reply to: Translating buddypress

    Roger Coathup
    Participant

    @johnwinch42

    Sorry, I don’t.

    Marco Rossi experimented with some plugins for this on the site we created for him at http://fisherbook.com/fisherbook-magazine – but, I notice he is no longer using them, so they mustn’t have been successful

    #94026

    In reply to: Translating buddypress

    John
    Participant

    @rogercoathup Thanks, apparently this plug-in is only working until the version 2.9.2 of WordPress.

    Do you know a plug-in who could offer the user the choice to choose the buddypress’s function language ?

    Roger Coathup
    Participant

    @pcwriter et al:

    A few people have asked about removing the “view” link in the activity stream, and those pesky, good for nothing permalink pages that it leads to.

    This little snippet in your functions.php will remove the link from your activity stream output:

    `
    // removes the view button
    function no_permalink($content)
    {
    return “”;
    }

    add_filter(‘bp_activity_permalink’, ‘no_permalink’);
    `

    Lawrence
    Participant

    Hey guys, I’m working on a plugin that is an adaptation of ravatar (which was built for for WordPress 2.5). I realise its been out of development for a while, but I’ve done some code changes and have it working on the latest 3.x WordPress – I wanted to use my own random (wavatar) type system where I design different head graphics and have them alternate colour/background etc. as I grew tired of the wavetar effect and wanted my own graphic.

    Wondering if people are interested in this as a public release?

    UPDATE 04/02/2013: Firstly just want to apologise for the delay – ended up getting side-tracked with a large site/project. However I just thought I’d mention that I will endeavour to get this up and will create a new topic when this happens. All the code is there on my development machine… I just wish I had more time to add in a proper backend for it!

    #94020
    ezbizniz
    Participant

    I disabled the default BP function to add all blogs to BP DB table with `add_site_option(‘bp-blogs-first-install’, 1);`

    Instead I do my own BP blogs installation for each blog during upgrade:

    `function bp_blogs_install_after_multisite_upgrade($blog_id) {
    echo(‘Blog ID ‘ . $blog_id . ‘:
    ‘);
    if(!get_blog_option($blog_id, ‘bp-blog-recorded’)) {
    $users = get_users_of_blog( $blog_id );

    if ( $users ) {
    foreach ( (array)$users as $user ) {
    $role = unserialize( $user->meta_value );

    if ( !isset( $role ) )
    bp_blogs_record_blog( $blog_id, $user->user_id, true );
    }

    add_blog_option($blog_id, ‘bp-blog-recorded’, ‘true’);
    echo(‘Blog ID ‘ . $blog_id . ‘ added to BuddyPress database.
    ‘);
    }
    } else {
    echo(‘Blog ID ‘ . $blog_id . ‘ already in BuddyPress.
    ‘);
    }
    }

    add_site_option(‘bp-blogs-first-install’, 1);
    add_action(‘wpmu_upgrade_site’, ‘bp_blogs_install_after_multisite_upgrade’);
    `

    #15517
    LPH2005
    Participant

    Since the documents here (http://codex.buddypress.org/getting-started/faqs/) are getting rearranged (Cool job Mercime and Boone!), maybe some of the answers can be extended and clarified. Here is an example of one that needs clarification and an extension.

    Is BuddyPress a forum script?

    BuddyPress is a social networking plugin for WordPress. It is not a forum script. A stripped-down forum is utilized in the BuddyPress Groups component. However, if you are looking for a traditional forum (setting up forum categories, forum administration, etc.), you can try Simple:Press or installing a standalone version of bbPress.


    Maybe additional information is needed. For example, BP uses wp_users and not bb_users. Also, maybe a link to the development of the new bbPress plugin could be included. Finally, links to topic threads already discussing the integration of bbPress standalone (such as http://codex.buddypress.org/buddypress-site-administration/using-an-existing-bbpress-installation/) and SimplePress forums would be helpful.

    Maybe this thread could be used to edit and write a “better” answer to the question. We could choose one FAQ – clean it up and move to the next one – thereby helping Boone and Mercime.

    Just a thought :)

    #94014
    RobotFX
    Participant

    tweetyx, I’m using your modified archive and the exact setting in the 2 images and I can see the map now when I set the location on the edit profile page. However, the map is still not loading on the profile page. There’s just the “Show your address on a map ?” text and in the right the map doesn’t load, though in the page code I can see the map’s script.
    Does it works for you or you have the same problem? If you managed to make it work, can you share the solution with us, please, or upload another working plugin?
    Thank you very much for the modifications.

    #15516
    bizybee
    Member

    Does anyone use Camino? Some of my users do and they’re getting an error when they try to post an update to a group’s home page/activity stream. I was running buddypress 1.2.5 (I think, whatever was the highest version compatible with wpmu 2.9.2) and camino was posting all updates as a single word: “undefined”. Users can reply to items in the activity stream no problem. Now I’ve updated to wp 3.0.1 multisite, and buddypress to 1.2.5.2 and Camino is still not posting updates correctly, but now it won’t post anything at all, and says “Please enter some content to post” instead of posting single word ‘undefined’ messages.

    #94004
    Yak Cast
    Participant

    I put in a ticket and screen shots here: https://trac.buddypress.org/ticket/2661

    #15514
    Ashwani
    Participant

    Hi Friends,

    I have recently started plugin development for Buddypress. I have fair knowledge of PHP and understand basics of Plugin development. Please can you help me with certain queries below:

    1. I understand using action hooks I can call my own function, but how can say that call my function after or before the action hook. e.g. I want to display new fields / text in User profile page so I’m attaching my function in action hook ‘xprofile_template_loop_end’, but this writes all the fields and ‘Save’ button and then calls my function so my fields/text comes after ‘Save’ button. Am I using correct hook? Or there should be different way?
    2. How can I know in my function (to take appropriate action) the current selected option by user. e.g. action hook ‘xprofile_template_loop_end’ can be called in display and edit profile, how can I know in my function that it is edit or just display?
    3. How can I add new fields on a page and database thru plugin and not manually editing the page?

    Appreciate your help.

    thanks & regards,
    Ashwani

    dougjoseph
    Member

    @RogerCoathup

    @paulhastings0

    I have found code instances of specifying one filter, but I have been unable to find code instances (or examples) for combining more than one filter. Can anyone give me a lead or show an example of how to combine more than one filter? I would be deeply indebted.

    #93995
    jimhellas
    Member

    Is there any quick way to resize the oEmbed videos for now, while we wait for the next version of oEmbed plugin?

    #93991
    @mercime
    Participant

    “The site was originally installed on WordPressMU”

    You can convert a WPMU install with only one site to single WP, it’s not hard to do and there are tutorials online on how to go about it. But none take BuddyPress into consideration and you’re on WP 3.0.1, so all bets are off. I would suggest experimenting on test install first and see how that works out, taking into consideration avatar and media upload paths. Main work would be on database. In the meantime, I assume that in your dashboard > Super Admin > Options > only user registration is allowed.

    #93990
    rich! @ etiviti
    Participant

    same for mark user as spammer
    https://trac.buddypress.org/ticket/2575

    #93989

    In reply to: Search Activity

    thelandman
    Participant

    @antonrsa, thanks mate. I’ve also been busy with an activity stream that is automatically updated with ajax and it neatly drops in with the jcarousel plugin with jquery.

    #93988
    catwebweaver
    Member

    Update: I have abandoned BuddyPress entirely for now. Too many problems.

    #15511
    Yak Cast
    Participant

    I have googled the inter-web and could not get a straight answer on how to solve this problem. A lot of people have reported that the kick and ban features are broken. It says that the user is banned bu they can log back into the forums and continue to post. I have disabled all plug ins and still have the same issue. Has anyone come across the fix for this or have it working? It would appear that it is a bug or an issue with buddypress it’s self, please help!

    #93986

    In reply to: Translating buddypress

    Roger Coathup
    Participant

    You would have to ask on the support forum for that plugin (if they have one)

    #93983

    In reply to: Search Activity

    guigoz
    Member

    @antonrsa
    If you need more tester, let me know.

    #93981

    In reply to: Translating buddypress

    John
    Participant

    @rogercoathup Thanks but this will be applied to all the blogs ? My buddypress is on a secondary blogs. And I just want to offer the users the choice to translate the functions in their languages.

    I have found something who could really fit my needs but I can’t make it work :
    https://wordpress.org/extend/plugins/fw-quick-langswitch/

    I’ve installed it, but if I click on the flags nothing happen. I have named my images according to the name of my languages files (buddypress.pot et buddypress-fr_FR.mo)

    #93980
    lespaul
    Member

    Well I have tried this and it don´t work.
    I can visit the site but I can´t login to the administration even with a clean installation of Buddypress.

    Please help me with this.

    tweetyx
    Participant

    Problems solved on actually bp and wordpress 3.0 for profile
    The first problem was the js conflict with jquery -> dynamic marks not works
    the second is the profile maps doesn’t work so ->
    the file bp_maps_profile_init.php contain a bp_maps_profile_init() function where the function bp_maps_profile_is_enabled, bp_is_profile_edit and bp_maps_profile_is_map_group return false so the js aren’t be loaded .
    So you must change the condition for it work!
    this is my code
    function bp_maps_profile_init() {
    global $bp;

    //backend options
    add_action( ‘bp_maps_admin_plugins_div’,’bp_maps_profile_admin_plugins_div’);
    //the numer of my group edit for the location page (/members/admin/profile/edit/group/6/)

    if(strpos($_SERVER[“REQUEST_URI”], “edit/group/6?) !== false):

    //change infobulle content to set user’s info
    add_filter(‘bp_maps_marker_infobulle_content’,’bp_maps_profile_infobulle_content’,10,2);
    //add_filter(‘bp_maps_get_markerslist_marker_content’,’bp_maps_profile_marker_content’,10,2);

    //change infobulle content to set user’s info
    add_filter(‘bp_maps_get_marker_title’,’bp_maps_profile_marker_title’,10,2);
    add_filter(‘bp_maps_get_marker_list_title’,’bp_maps_profile_marker_title’,10,2);

    add_action(‘wp_print_scripts’,’bp_maps_profile_print_scripts’); //edition scripts (address autocomplete)
    add_filter(‘bp_maps_get_map_js’,’bp_maps_profile_add_map_js’,10,2); //array to contain the field ids
    add_action(‘wp’,’bp_maps_profile_edit_no_marker’);

    //TO FIX : useless ?
    //add_filter(‘bp_maps_get_new_marker_address’,’bp_maps_profile_get_new_marker_address’);

    do_action(‘bp_maps_profile_edit_map_screen’);

    bp_maps_head_init(); //load maps JS

    endif;

    }

    If you want to dll my version it here http://www.sky-flop.com/buddypressmaps-titi.rar

Viewing 25 results - 65,876 through 65,900 (of 94,539 total)
Skip to toolbar