Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,351 through 19,375 (of 69,104 total)
  • Author
    Search Results
  • #170545
    studiopeter
    Participant

    I’m having the same issue.
    Is there a solution yet ??

    Regards,
    Peter

    #170526
    bp-help
    Participant

    @megainfo
    Thanks for the info. I will give it a try!

    #170519
    terraling
    Participant

    Sorry @funmi-omoba, I didn’t quite get your question, but here is the code I added to my functions.php based on earlier answers:

    function my_add_friend_link_text($button) {
    	switch ( $button['id'] ) {
    		case 'pending' :
    			$button['link_text'] = 'x Pending';
    			$button['link_title'] = 'Cancel friend request';
    			$button['link_class'] .= ' btn btn-xs btn-warning';
    		break;
    
    		case 'is_friend' :
    			$button['link_text'] = '- Unfriend';
    			$button['link_class'] .= ' btn btn-xs btn-danger';
    		break;
    
    		default:
    			$button['link_text'] = '+ Friend';
    			$button['link_title'] = 'Send friend request';
    			$button['link_class'] .= ' btn btn-xs btn-success';
    	}
    	return $button;
    }
    add_filter('bp_get_add_friend_button', 'my_add_friend_link_text');
    

    I’m changing the link text, changing the title, and adding additional classes (I’m using bootstrap and wanted the buttons styled the same as elsewhere, though that means deleting the generic button styling from buddypress.css)

    Hope that helps.

    #170516

    rtMedia is a huge, massive cluster of bugs. Awful. I have installed and uninstalled it at least 7 times in the last month, trying to give it just one more chance…. Every time I do, I discover a new bug.

    Give BuddyDev’s Gallery plugin a shot. It’s premium ($30 for a 3-month “club” membership), but it’s got actual (if spotty) support – and without the attitude you get from rtMedia’s developers.

    Also – and this is big for me – it includes the ability to embed media, rather than hosting. I really don’t want to be in the video hosting business at this point.

    #170510
    jaemaz
    Participant

    Actually, this functionality is controlled by the BuddyPress Group Email Subscription plugin, but still… anybody? 🙂

    #170505
    meg@info
    Participant

    @bphelp,

    Of course if your try the plugin in buddypress child theme other than the default will not work fine beceause the plugin use the default buddypress template !

    the plugin work with all wordpress themes if the theme use legacy buddypress theme,
    if it is child theme, in this case you must customize the plugin templates by modifying the template files. Just copy buddypress-wall\includes\templates\bp-default folder to your theme and edit the templates.

    A lot of Buddypress plugins present a template and suggest a customisation if the theme is buddypress child themes.

    #170498
    bp-help
    Participant

    @fungi-amoeba @nexus66
    I tried the plugin but it didn’t seem to work on various themes. Also it seems some of the same functionality came from @brajesh ‘s post here:

    Facebook Style Activity Commenting with BuddyPress


    I would like to see this work though on all themes in the future.

    #170495
    Nexus66
    Participant

    Will give it try..

    #170493
    Henry
    Member

    Which premium plugin did you find?

    To make uploading an avatar a requirement you’d have to have an upload form on the registration page. This used to happen in BuddyPress. Some discussion on it in this thread:
    https://wordpress.org/support/topic/plugin-buddypress-avatar-upload-in-registration-form

    #170487

    In reply to: two page home page?

    bp-help
    Participant
    #170484

    In reply to: two page home page?

    bp-help
    Participant

    @villnoweric
    Try this it is a slightly modified snippet I did earlier but fits your requirement. Follow the instructions in the code.`
    // PLEASE NOTE FOR THIS TO WORK:
    // Before adding this code to bp-custom.php
    // https://codex.buddypress.org/developer/customizing/bp-custom-php/
    // you will need to create a new page in the dashboard and name it
    // something like “Dummy Page” for example or any name you choose.
    // Do not add this page to your menu because it is just a dummy page
    // for the redirect. Then go to Dashboard/Settings/Reading.
    // Under “Front page displays” select “A static page.” Then use the
    // “Front page” drop-down menu to select the page you created. In my
    // example for instance I selected “Dummy Page” for my front page.
    // Done! Now logged out visitors get redirected to the register page,
    // and logged in users get redirected to the activity stream.

    /* Redirects to profile upon login, and logged out users are redirected to register page */
    function bp_help_redirect_to_profile(){
    if( is_user_logged_in() && bp_is_front_page() ) {
    bp_core_redirect( get_option( ‘home’ ) . ‘/activity/’ );

    }else {
    if ( !is_user_logged_in() && !bp_is_register_page() && !bp_is_activation_page() )
    bp_core_redirect( get_option( ‘home’ ) . ‘/register/’ );
    }
    }

    add_action( ‘get_header’, ‘bp_help_redirect_to_profile’,1 );
    `

    #170483
    rickkumar
    Participant

    @Hugo

    Thanks for your comment.
    I never said I want BP to be a facebook clone.
    I love BP.

    I strongly feel that BP lacks depth in this functionality.
    It is not useful at all. Facebook does it right.
    A social network software should be able to do it right.

    That’s the only reason I mentioned facebook.

    I hope you give this issue another consideration and help make BP more useful.

    #170476
    Jose Conti
    Participant

    Hi @ubernaut

    What WordPress and BuddyPress version do you use?

    The reported users are listed in our DEV installations.

    #170467
    tallmeerkat
    Participant

    hi pcwriter. thanks for this response. I am looking for a reporting tool about users and also plugin(?) with which I can get an analysis of trending topics in the buddypress community at a given time. Does something exist?

    #170464
    Tecca
    Participant

    I found rtMedia to be great when I was testing it. I know you mentioned it’s not working, but it’s honestly the most quality media plugin I’ve found for BuddyPress. I think if you’re having this many problems with plugins, you might want to see if it’s your theme that’s causing these errors. Otherwise if you find other plugins, those may not work as well.

    #170463
    Henry
    Member

    Disabling usernames sitewide sounds like a huge task to me. BuddyPress needs a unique identifier to use in URLs. Have you thought about providing your members with the ability to change their username?

    BuddyPress Username Changer

    You’d just need to send a global message to all members letting them know how they can update their username.

    #170461
    Henry
    Member

    There was an alternative to BuddyPress Media (rtMedia) – I think it was called BP Media. I’m not sure if it is supported anymore or even in the WP plugin repository but it might be worth a try if you can get hold of it. That said, rtMedia is working very well for me on my test site. Will be putting it live in the next few weeks.

    #170457
    terraling
    Participant

    I’m pretty certain there is no way to avoid them having a username, although in principle you could auto-generate a string of random characters that they never see.

    I’m not familiar with the wordpress.com sign-up, but you could always pretty-please the Jetpack people to see if they will port it across to wordpress.org.

    Or look at the various social networking plug-ins. Social Login allows “your visitors to comment, log-in and register with their social network accounts” and works with WordPress and BuddyPress.

    If you want something more specific, then you may have to contract a developer to do it for you (then release it as a public plug-in!).

    mrshaffly
    Participant

    Anyone?

    #170429
    xiot
    Participant

    @bphelp

    This looks nice but wasn’t what I was looking for since I have a frontpage already and don’t want to change it!
    But the link within the code was pretty helpfull! I couldn’t find out where to find the bp-custom.php. Now I know that it has to be created 😀 Thanks anyway!

    And also thanks to @struth !
    Cause of you i found out how to switch the result of is_user_logged_in() . It’s a simple “!” that needs to be in front of the function!

    But I still can’t imagine why the snippet was named to direct visitors to the registration page! It doesn’t do that.

    Now the code is modded and it DOES redirect not logged in users to the registration page!

    Feel free to use it 🙂

     function redirect2profile(){
    	include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
    	if($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php') && is_user_logged_in()){ 
    		global $current_user;
    		wp_redirect( get_bloginfo('url') . '/member/'. $current_user->user_login . '/profile/'); 
    		exit();
    	} else {
    		if ($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php') && !is_user_logged_in()) {
    		wp_redirect( get_bloginfo('url') . '/register/'); 
    		exit();
    		}}
    			
     }
    add_action('init', 'redirect2profile');
    

    Cheers, Lars

    #170427

    @henrywright-1,

    This is what i did to remove it from activation email, you can play with it to remove it from all

    function fix_bp_activation_subject($subject) {
    return __( "Activate Your Account",'buddypress ' );
    }
    add_filter( 'bp_core_activation_signup_user_notification_subject ','fix_bp_activation_subject');

    Naijaping

    #170414
    struth
    Participant

    I just hijacked Mr Jacoby code:

    add_action('after_setup_theme', 'remove_admin_bar');     // remove admin bar for users
    
    function remove_admin_bar() {
    if (!current_user_can('administrator') && !is_admin()) {
      show_admin_bar(false);
    }
    }
    
     function redirect2profile(){
    	include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
    	if($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php') && is_user_logged_in()){     //show buddypress user profile page
    		global $current_user;
    		wp_redirect( get_bloginfo('url') . '/members/'. $current_user->user_login . '/profile/'); 
    		exit();
    	}
     }
    add_action('init', 'redirect2profile');
    
    ?>

    Into a plugin for those who don’t know how, or just don’t want to add this code to the functions.php file. you can download it HERE

    Removes the admin bar for all users except Administrators and gets “global $current_user;” profile to a page you create called Profile as described by jackreichert

    I’ve said it before but I’m going to say it again – you’re a genius Mr Jacoby

    #170412
    tsinclair1982
    Participant

    Were you creating a theme?

    #170402
    xiot
    Participant

    Hi there!

    This worked quite fine for me, but i have the problem that this code doesnt bring me to a signup page when you aren’t logged in.

    I tried to add the redirect with “else” but it didn’t work for me either.
    The code has now changed, since I tried to figure out why it doesn’t redirect me to my register page.

    I’m not very skilled with PHP so maybe someone can help me out.
    I want the code to redirect the not logged in user to a register page

      function redirect2profile(){
    	include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
    		if ( is_user_logged_in()){
    		if ($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php')) {
    			global $current_user;
    			wp_redirect( get_bloginfo('url') . '/member/'. $current_user->user_login . '/profile/'); 
    			exit();
    			}
    	} else {
    		if ($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php')) {
    		wp_redirect( get_bloginfo('url') . '/register/');
    		exit();
    		}
    		}
    		 }
    add_action('init', 'redirect2profile');
    
    #170400
    funmi omoba
    Participant

    @shanebp,

    Thanks for your snippet which works great with standard buddypress message system but did not work if using BP Profile Message UX plugin, is there anyway to make it work please

    https://wordpress.org/plugins/bp-profile-message-ux/

    tahnks

Viewing 25 results - 19,351 through 19,375 (of 69,104 total)
Skip to toolbar