Search Results for 'buddypress'
-
AuthorSearch Results
-
June 22, 2016 at 2:24 pm #254966
In reply to: how to shorten Buddypress activation key
Paul Wong-Gibbs
KeymasterMultisite 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.
June 22, 2016 at 11:43 am #254953In reply to: Any way to import WordPress members yet?
danbp
Participantdid you activated profile syncing in BP settings ? For the rest, same answer as here:
June 22, 2016 at 11:39 am #254951In reply to: Create custom pages on buddypress
danbp
ParticipantHi,
read documentation about xprofile, which is the place to go for what you want to do.
June 22, 2016 at 11:34 am #254950danbp
ParticipantMany topics about this question are already on the forum. You can also read here to get an idea.
June 22, 2016 at 10:10 am #254940In reply to: [Resolved] Username & Name (Nickname) no repeat
jowyds
ParticipantSorry guys, I found a rather neat solution here.
June 21, 2016 at 5:23 pm #254925In reply to: Using wordpress registration
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.
June 21, 2016 at 3:46 pm #254923Jon Fergus
ParticipantAnyone 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.
June 21, 2016 at 3:28 pm #254922In reply to: [Resolved] can’t find “Network Admin”
lemantico
Participanthi 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!
June 20, 2016 at 11:17 pm #254888In reply to: Avatar URL
danbp
ParticipantSince WP 4.2, you can use
get_avatar_url. More on this discussion.Perhaps this may work too:
bp_loggedin_user_avatar( 'html=false' );June 20, 2016 at 7:26 pm #254884In reply to: Lock comments button
danbp
ParticipantEventually show/hide comments ?
https://buddypress.org/support/search/add_comment_hide_show/
June 20, 2016 at 6:16 pm #254878In reply to: Post Group Update Directly In Activity Stream Page
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.
> 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 ?June 20, 2016 at 4:38 pm #254873In reply to: Move friend count bubble from tab to subtab
ljmac
ParticipantWow, 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/
June 20, 2016 at 4:23 pm #254870In reply to: Move friend count bubble from tab to subtab
danbp
ParticipantHow 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 isFriends <span class="%s">%s</span>to replace by eg.Friendsor 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' );June 20, 2016 at 12:05 pm #254867In reply to: Default Profile Visibility
danbp
ParticipantDid you cheched the field settings ?
June 20, 2016 at 12:04 pm #254866In reply to: Error on Profile View field
danbp
ParticipantHey, 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.
June 20, 2016 at 11:58 am #254865In reply to: [Resolved] can’t find “Network Admin”
danbp
ParticipantHi @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.
June 19, 2016 at 7:23 pm #254849In reply to: Multisite with domain mapping
mvalex
ParticipantThis might be a bug. I’ve created a ticket: https://buddypress.trac.wordpress.org/ticket/7128
June 19, 2016 at 7:11 pm #254848In reply to: [Resolved] profile tab
danbp
ParticipantHi,
template action hook
bp_after_profile_field_contentis located in bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php:60Add 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' );June 19, 2016 at 5:14 pm #254846In reply to: A question about @mentions
June 19, 2016 at 5:11 pm #254845In reply to: little thing with a big impact
danbp
ParticipantHallo,
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:June 19, 2016 at 3:36 pm #254842In reply to: [Resolved] visual editor for writing messages?
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.
thanksJune 19, 2016 at 9:03 am #254837In reply to: [Resolved] visual editor for writing messages?
danbp
ParticipantYou 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 !
June 19, 2016 at 8:44 am #254836In reply to: How I can Modify buddypress profile update?
danbp
ParticipantUpdates 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.June 19, 2016 at 8:01 am #254832In reply to: How I can Modify buddypress profile update?
sharmavishal
Participantyou want to add a new buddypress profile field?
June 19, 2016 at 6:31 am #254827In reply to: [Resolved] signup (register) page not showing
Masoud
Participantre 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 -
AuthorSearch Results