Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,051 through 10,075 (of 69,120 total)
  • Author
    Search Results
  • #254966
    Paul Wong-Gibbs
    Keymaster

    Multisite uses the signups table to hold user accounts that have registered but not activated their accounts yet. BuddyPress, of course, does this same thing by default, so it makes sense for us to use this same table.

    #254953
    danbp
    Participant

    did you activated profile syncing in BP settings ? For the rest, same answer as here:

    Members are not showing up. HELP PLEASE!!

    #254951
    danbp
    Participant

    Hi,

    read documentation about xprofile, which is the place to go for what you want to do.

    User Extended Profiles

    danbp
    Participant

    Many topics about this question are already on the forum. You can also read here to get an idea.

    #254940
    jowyds
    Participant

    Sorry guys, I found a rather neat solution here.

    plugin by r-a-y

    #254925
    celito
    Participant

    @daniel84uk @mcpeanut I tried that snippet code in the directory suggested but can’t get it to work. I see a missing page error. Do I need to delete the BuddyPress register page. Also does “disable buddypress. wp-login.php?action=register” mean deleting it? In what directory is this found? Thanks for any help.

    Jon Fergus
    Participant

    Anyone have any luck with this one? I’m trying to find a way to set a featured image that will work as the og:image for groups. Having no luck figuring it out yet.

    Also, I was able to add the ability to include a featured image for a forum, but the featured image I set isn’t showing up as the og:image in the facebook debugger. See here where I posted about it in the bbpress forum. Not sure if this glitch is because my forum is within a buddypress group…?? If anyone has a clue how to do this, please share.

    #254922
    lemantico
    Participant

    hi danbp,
    thanx a lot for your quick reply! Meanwhile I figured it out, while browsing help videos on youtube! The description on your site is a kind of jumpy and maybe that’s why it confused me. Anyway, finally I got BuddyPress up and running now (incl. Chat & Forum), and I kinda like it, how easy the setup really was! Thank you again for your help! God bless you, mate!

    Best regards!

    #254888

    In reply to: Avatar URL

    danbp
    Participant

    Since WP 4.2, you can use get_avatar_url. More on this discussion.

    Perhaps this may work too: bp_loggedin_user_avatar( 'html=false' );

    #254884

    In reply to: Lock comments button

    danbp
    Participant
    #254878
    danbp
    Participant

    > I want to set up an activity stream page which will be the only public interface to a group

    Each group has is own activity stream.

    Activity Streams

    > I want people to be able to post updates to that group from the activity stream

    Each group member has access to the group update. (what’s new form)

    That’s default behave for any group / group member !

    I don’t really understand your question. Do you mean perhaps the site activity page ?

    – How many groups do you have ?
    – Can members access to only one group or have they the ability to subscribe to more ?

    #254873
    ljmac
    Participant

    Wow, fantastic response danbp!

    It’s 2:30AM here now so I’ll have to try this tomorrow, but thankyou so much for your help anyway – that’s quite a lot of code to come up with!

    Now all I have to do is figure out this one: https://buddypress.org/support/topic/post-group-update-directly-in-activity-stream-page/

    #254870
    danbp
    Participant

    How do I do this?

    You have to bake 5 894 pizza and search the forum ! Or experiment the following…

    First you remove the counter. This can be done by using the language file.
    Original string is Friends <span class="%s">%s</span> to replace by eg. Friends

    or using this function (add to bp-custom.php)

    function bpfr_remove_friends_count( $translated, $original_text, $domain ) {
    		
    	if ( 'buddypress' !== $domain )  
    	return $translated; 
    	
    	switch ( $original_text ) {
    		
    		case 'Friends <span class="%s">%s</span>':
    		return 'Friends';
    		
    		default:
    		return $translated;
    	}
    }
    add_filter( 'gettext', 'bpfr_remove_friends_count', 10, 3 );

    The Friends subnav has only two elements: friendships and request.
    Friendships is the default one and can’t be removed. So we have to hide it with css. Add this to your child-theme style.css

    #friends-my-friends-personal-li {display:none;}

    This is default css, and you have to check it as it can vary depending your theme.

    Finally add a new subnav item with counter in replaciement of the one you’ve just hiden (add to bp-custom.php).

    function bpfr_custom_profile_sub_nav() {
    global $bp;
    
    	if( bp_is_active( 'friends' ) )
    
    	$count    = friends_get_total_friend_count();
    	$class    = ( 0 === $count ) ? 'no-count' : 'count';
    	
    	//Add subnav item 	 
    	bp_core_new_subnav_item( array(
    		'name' => sprintf( __( 'Friendships <span class="%s">%s</span>', 'buddypress' ), esc_attr( $class ), bp_core_number_format( $count ) ),			
    		'slug'            => 'friends',
    		'parent_url'      => $bp->loggedin_user->domain,
    		'parent_slug'     => $bp->friends->slug,
    		'screen_function' => 'friends_screen_my_friends',
    		'position' => 10
    		)
    	);	
    }
    add_action( 'bp_setup_nav', 'bpfr_custom_profile_sub_nav' ); 
    #254867
    danbp
    Participant

    Did you cheched the field settings ?

    User Extended Profiles

    #254866
    danbp
    Participant

    Hey, it’s monday ! Site url ? Theme name ? Give details please.

    See also the codex, as there is plenty of documentation about how BuddyPress can be setup and used.

    User Extended Profiles

    #254865
    danbp
    Participant

    Hi @lemantico,
    please use the correct publishing tool when you insert links to post. You can add a screenshot here, but it must be stored on a external site. For that, use <img> button and insert the URL of the picture.

    Also, don’t use Google’s search result URL witch is stripped, but the canonical one.

    1) Installing a network locally is a bit more complex as a regular install. It depends first on how you setup your local server and the OS you use.

    You tell about bbPress, are you sure of this ? It’s only a forum plugin and has nothing to do with network setup. And you’re here on the BuddyPress forum!

    If the codex didn’t helped you, maybe this tutorial can.

    Sorry to not help more, but it’s not possible to rewrite here what is already written on WordPress & BuddyPress codex.

    #254849
    mvalex
    Participant

    This might be a bug. I’ve created a ticket: https://buddypress.trac.wordpress.org/ticket/7128

    #254848

    In reply to: [Resolved] profile tab

    danbp
    Participant

    Hi,

    template action hook bp_after_profile_field_content is located in bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php:60

    Add a function to bp-custom.php. Eg.

    function queensplace() {
    // your sutff here
    	echo 'outside the container, below the profile tab';
    }
    add_action( 'bp_after_profile_field_content', 'queensplace' );
    #254846
    danbp
    Participant

    @c02capo get the answer directly on plugin forum !

    #254845
    danbp
    Participant

    Hallo,

    enhancement demand should be made on Trac. Use same login credentials as here.

    There is a TOS plugin which you could use:
    https://wordpress.org/plugins/simple-terms-and-conditions-for-buddypress/
    Another solution can be reached here:

    Terms & Conditions Checkbox

    #254842
    binary10
    Participant

    @danbp
    I know its a prototype plugin and i installed it on a test website. Thanks for the link but it doesn’t work.
    I added the code to bp-custom.php and then edited buddypress/activity/members/single/messages/compose.php. I replaced <textarea name="content" id="message_content" rows="15" cols="40"> with <?php do_action( 'whats_new_textarea' ); ?>. It actually shows the visual editor but when the send message button is clicked it gives error Your message was not sent. Please enter some content. I am not much familiar with coding so maybe I am doing a mistake.
    thanks

    #254837
    danbp
    Participant

    You should read before installing a prototype plugin !

    This is a work in progress to illustrate what i have in mind for a next BuddyPress Template Pack. DO NOT USE on a live website! I repeat: DO NOT USE on a live website!

    If you want a visual editor, here’s a bit old solution. Give it a try, maybe it’s still working !

    #254836
    danbp
    Participant

    Updates are added via an ajax handled text-area field type. But I never heard about a nested text-area. The only way to add something is to edit the update.

    The form is in bp-legacy/buddypress/activities/post-form.php
    A list of all BuddyPress “update” or “updates” related functions can be found here.

    #254832
    sharmavishal
    Participant

    you want to add a new buddypress profile field?

    #254827
    Masoud
    Participant

    re installed my theme + buddypress plugin solved my problem.
    i dont know wat caused this problem. because everything is just like before, and now it’s working.
    thanks for your help @danbp and @sharmavishal

Viewing 25 results - 10,051 through 10,075 (of 69,120 total)
Skip to toolbar