Search Results for 'buddypress'
-
Search Results
-
Topic: Video calling for buddypress
It is possible? This is a killer function..
So im making a learndash site and using Buddypress and the BP Learndash plugin and noticed a problem with Group Member counts pulling old deleted members and adding them to the group when you change the settings of the group. I do NOT know for sure if this has anything to do with Learndash but i know it has something to do with Buddypress.
To better explain it i made a quick video.
http://www.screencast.com/t/3FAMkiq95otzYou can see there very clearly the issue with the referenced database tables etc.
Would love to know how to prevent this from happening.
My site features Sensei courses that have Buddypress groups/forums associated with them. Once someone signs up for a course, they are automatically in the group/forum. Is there some way to automatically subscribe those learners to the course group’s forum so they don’t have to take any action to be notified when new topics are created? I tried this plugin (https://wordpress.org/plugins/buddypress-group-email-subscription/) but it seems to tack on separate email options functionality instead of using the built-in “subscribe/unsubscribe” functionality.
Topic: profile custom page
Hello everyone
I’m a beginner and I request your help for finish my project.
Thanks to Buddypress + BP custom fields + BP profile search I can make a wonderfull system but I miss one thing :
A simple profile page with my custom fields made by BP custom fields + avatar for member. And If possible with a button to edit and delete profile
I’m not able to do that. I haven’t find a plugin for or tips for code.
In fact my theme lovestory have a profile page but she’s not working like I want and my customs fields can’t appear on
Please could you tell me how to solde my problem because i’m working for since two days and I’m dreaming about that at night XD !
Thank’s you
WP version: 4.6.1
BP version: 2.7.2Hi all. I’m surprised this solution isn’t easy to find as it seems like a lot of people would want to do this, but I guess most themes have it already. I’m trying to integrate BP into a theme that isn’t BP compatible. It works but isn’t styled for it.
I moved the user navigation menu from the admin bar to the header so I could get rid of the admin bar altogether. Everything works except the Profile menu item isn’t showing the sub-menu. All the links are under Settings so I could just remove the Profile item. I just don’t know where the code is. I believe it’s pulling from ‘bp_nav_menu’ but I don’t know which file to tweak. Could you tell me where to look?
Also, the main issue is the styling. I can’t seem to find the CSS code to modify the navigation menu. I’ve been messing with it but a few things I can’t seem to find.
The code I used was from answer #2 on this link. (#1 didn’t seem to work as well.)
The php code was fine but the CSS code was kind of a mess and needs a lot of padding and alignment adjustments. Mainly, could you tell me two things…
1. Where do you add the alignment so the menu items are flush left?
2. Which section is the styling for the individual menu items (Activity/Profile/etc.) in the dropdown? Thought I found it but the code doesn’t seem to be appearing.
I know we’re supposed to post the link to our site but the menu only shows when you’re logged in and I’m still working on it so I prefer not to post it.
Also, I’m not a programmer. I can use Firebug and tweak php code and CSS but I’m still learning a lot of the stuff you guys probably know really well. If I sound stupid, well, in a lot of things I am. 🙂
Thanks for any help.
Hello Buddypress buds!
A lot of people have been talking over the past couple of years about “how to require a profile photo upon registration. And I know it’s a risky thing to do, but many of us are willing to take that risk.
There are a handful of plugins that try to assist with this procedure, but some fail, and some are only partially successful. The best solution that I’ve found is Xprofile Custom Fields. With this plugin, and a lot of help from the author, I’ve managed to get profile photos to be required in the registration process. However, the issue I’m having is that the users are unable to effectively change their profile photo by using the options in the Buddypress “Profile” section/menu. The user can still click “Change Profile Photo,” and it will accept their upload, but the old photo remains in the member directory & in the user’s profile itself.
I think there must be a miscommunication occurring due to this new way of gathering the user’s original profile photo. It seems like some code, pertaining to the Buddypress “Change Profile Photo” function needs to be tweaked, but I can not pinpoint the function, which would be the first step towards fixing this issue.
To demonstrate how I’m requiring the profile photo upload in the registration, here is the function I’ve added to my theme’s functions.php file:
add_filter( 'bp_core_fetch_avatar', 'my_custom_avatar', 10, 2 ); function my_custom_avatar( $avatar, $params ) { if ( 'user' === $params['object'] ) { // Get the src of the original avatar. $array = array(); preg_match( '/src="([^\"]*)"/i', $avatar, $array ); if ( count( $array ) > 1 ) { $old_url_avatar = $array[1]; // Get the new url of image. $uploads = wp_upload_dir(); $img = maybe_unserialize( BP_XProfile_ProfileData::get_value_byid( 5218, $params['item_id'] ) ); if ( ! empty( $img ) ) { $new_url_avatar = $uploads['baseurl'] . $img; // Replace the old src with the new url. $avatar = str_replace( $old_url_avatar, $new_url_avatar, $avatar ); } } } // Return the avatar. return $avatar; }I’d like to mention that I have asked the plugin author about this, but my message on that plugin’s support forum has been deleted twice, making me think I should give the man a break.
Here are some specifications of my site:
It’s running on WordPress v4.6.1, Buddypress v2.7.0, & using BuddyPress Xprofile Custom Fields Type v2.6
“5218” is the field ID for the “Upload Image” field.
Thanks and sorry if I posted in an inappropriate forum, I think I chose the right one.
Hi, I’m using the plugin BuddyPress Admin Only Profile Fields to hide certain xprofile fields, I have quite a few, when viewing the admin EDIT (front view) page, it shows a blank white screen. I cannot figure out whats wrong with the site, if anyone can help I’d greatly appreciate it.
Hello, I was looking how to change the email address from which are sent the emails from buddypress to the users. When a user receives an email from buddypress it looks like this
How to change the word “wordpress” in “info”?
I found online a topic that has over 2 years. There is the suggestion to add in theme’s function.php this code
function custom_wp_mail_from( $email ) { $handle = 'info'; $find = 'http://'; $replace = ''; $link = get_bloginfo( 'url' ); $domain = str_replace( $find, $replace, $link ); return $handle . '@' . $domain ; } add_filter( 'wp_mail_from', 'custom_wp_mail_from' );Can you confirm this is the best solution to do it?
Thanks you!
Hi Buddypress and Members,
Is there a way to display a “xProfile Field Group Name” by slug for example, with the fieldnames as links below the group name, on the groups overview page. The link would show the searchresult for the members having selected this field value in their profile. So actually it would just need to get the Keyword for the fieldname.
That is to make an overview page with more details on how the members are sorted.
Obviously the field is not related to a user ID.
Example:
– Group “Sports”
– Profile Field Group “Display: Disciplins”
– Profile group fields “Links: Tennis, Football, Rugby” (By clicking on the link you get to see all members that have selected the link search item)
– Group “Hobbies”
– Profile Field Group “Display: Disciplins”
– Profile group fields “Links: Dance, Drawing, Programming” (By clicking on the link you get to see all members that have selected the link search item)
…In my mind the logik would be something like “get all fieldnames from field group “ID” and make a link to search page”.
Example:
<a href="/members/member_?search=###fieldname###">###fieldname###</a>Kind regards
Rolf Service – Onlineplaner
Topic: BP and AMP
Does it make sense to implement AMP on a buddypress site? Or is that just unnecessary overhead it theme is responsive etc.
Hi, I have previously been asked to set my site up so that buddyprerss members’ profiles can not be found by search engines. They want theme to only be accessible by visiting the site. I have put a robots file on my site (see below) but am still getting profiles appearing in searches – please can you tell me if there is anything I need to add to the file. Thanks, Matt.
User-agent: *
Disallow: */activity/p/*
Disallow: /docs/
Disallow: *send-invites*
Disallow: */groups/*members*
Disallow: */groups/*media*
Disallow: *widget-title*
Disallow: *members/*activity*
Disallow: *members/*notifications*
Disallow: *members/*friends*
Disallow: *members/*groups*
Disallow: *members/*docs*
Disallow: *members/*media*
Disallow: *acpage*
Disallow: *messages*
Disallow: *friends*
Disallow: *settings*
Disallow: /*/comment-page*
Disallow: *register*
Disallow: *login*
Disallow: *profile*
Disallow: *admin*
Disallow: *includes*
Disallow: *content*Hi
How i want to unavailable certain parts in buddypress for certain user only?
For example, i want to unavailable add friends and sent with read message for user that not paid.
Help me please.
Thank you.I have an ongoing problem with spammers, and whereas there is no adequate mechanism to control spam with BP, I proceeded to disable sending of email notifications. At least that’s what I figured the feature is about.
Under “Emails >> All Emails”, I chose to Edit those that are abused by spammers, and deselected whatever was checked off under “Selection”, thinking that if no situation is selected for when the email should be triggered, then none will be triggered.
Unfortunately, those I have deselected now disable the following error message on the All Emails page:
Warning: Invalid argument supplied for foreach() in ../../wp-includes/functions.php on line 3508
Warning: implode(): Invalid arguments passed in ../../wp-content/plugins/buddypress/bp-core/classes/class-bp-admin.php on line 1015
I am up to date on WP and all plugins, and use Twenty Sixteen child theme slightly customized.
Hope somebody can help me resolve the error issue.
Topic: Members age showing 46
Hi,
I have one problem in my member’s directory. All members who have not filled the age in their profile, in members directory is their age automatically set for 46 instead of a blank space. I have deactivated all my plugins except buddypress and also tried to deactivate child theme to see if any of my changes could have caused it, but nothing. The problem is still there. Any idea why?
I have also contacted the SweeDate theme guys, but they just don’t know what this could be.
I have also seen similar issue discussed in this forum dated 2 years ago, but it seemed that the issue hasn’t been sorted… https://buddypress.org/support/topic/all-members-showing-age-of-44-years-old/
I am using WordPress 4.6.1 running Sweetdate Child theme and BuddyPress 2.7.2
Thanks
Topic: ‘Login to post’ missing
Hi all.
In my Buddypress groups I need a button “Login to post” if the user is not logged in. I thought that Buddypress would do this by default but apparently not?
Can someone point me in the right direction as I have search a bunch of articles but not found the key yet.Thanks,
Michael