Search Results for 'buddypress'
-
Search Results
-
Wordpress Version 6.5.5
BuddyPress 12.5.1Testing registration and the attached email doesn’t have a Group Name. THe Group Name doesn’t populate. Can anyone tell me where this email comes from and how I fix this or stop this one from sending? Thanks.
_______. has invited you to join the group: “{{group.name}}”.
Go here to accept your invitation or visit the group to learn more
Hello,
on Buddypress site, the users can set their avatar from the community profile setting, and that will appear throughout the site inside the group everywhere.How can the admin allow users to use a different avatar and name when they join a public group(anonymous feature)?
what I mean is which plugin or tool can allow anyone to select another avatar and nickname for hiding themself in the group before they join a public group? the other avatar can be selected from their device or there is a feature inside the groups to provide an avatar list for setting avatar and nickname in this group.
thank you
Hey there!
I have a quite simple dilemma but can’t quite get it right. I am trying to set up the extended profile for users but I’d like for some of the basic profile fields from a standard WordPress installation to show and be edited through it.
Especifically I’d like to have the first name, last name, url and user description, that are available trough the wp-admin/profile.php dashboard page, to be editable through the <site>/members/<user nicename>/profile/edit/group/1/ page.
How can I do that? Thanks a lot!
PS. I asked ChatGPT and got this answer that throws a Fatal error:
function sync_bp_wp_profile_fields($user_id) { if (!bp_is_active('xprofile')) { return; } // Get BuddyPress profile field IDs (replace with your actual field IDs) $bp_first_name_id = 1; // Example field ID for First Name $bp_last_name_id = 2; // Example field ID for Last Name $bp_url_id = 3; // Example field ID for URL $bp_description_id = 4;// Example field ID for Description // Fetch BuddyPress profile data $first_name = xprofile_get_field_data($bp_first_name_id, $user_id); $last_name = xprofile_get_field_data($bp_last_name_id, $user_id); $url = xprofile_get_field_data($bp_url_id, $user_id); $description = xprofile_get_field_data($bp_description_id, $user_id); // Update WordPress user data wp_update_user([ 'ID' => $user_id, 'first_name' => $first_name, 'last_name' => $last_name, 'user_url' => $url, 'description' => $description, ]); } // Hook to update WordPress user data when BuddyPress profile is updated add_action('xprofile_updated_profile', 'sync_bp_wp_profile_fields', 10, 1); function sync_wp_bp_profile_fields($user_id) { if (!bp_is_active('xprofile')) { return; } // Get BuddyPress profile field IDs (replace with your actual field IDs) $bp_first_name_id = 1; // Example field ID for First Name $bp_last_name_id = 2; // Example field ID for Last Name $bp_url_id = 3; // Example field ID for URL $bp_description_id = 4;// Example field ID for Description // Fetch WordPress user data $user_info = get_userdata($user_id); $first_name = $user_info->first_name; $last_name = $user_info->last_name; $url = $user_info->user_url; $description = $user_info->description; // Update BuddyPress profile data xprofile_set_field_data($bp_first_name_id, $user_id, $first_name); xprofile_set_field_data($bp_last_name_id, $user_id, $last_name); xprofile_set_field_data($bp_url_id, $user_id, $url); xprofile_set_field_data($bp_description_id, $user_id, $description); } // Hook to update BuddyPress profile data when WordPress user data is updated add_action('profile_update', 'sync_wp_bp_profile_fields', 10, 1); add_action('user_register', 'sync_wp_bp_profile_fields', 10, 1);Hi guys,
I’m new to using BuddyPress and have set up a course on my website using learnDash.
When I go to Member Profile, the courses section just shows all the courses in a list format. I want to change the design to display them as Cards. Can you guide me through how to do this?
Please assist.
Topic: user engagement
I’m developing a lifestyle community site using BuddyPress and looking for advice on customization. What are the best practices to match the aesthetic and functional needs of a lifestyle website? Any recommended plugins or tips for enhancing user engagement?
Thanks!
WP 6.5.5
Buddypress 12.5.1If I go to this page: https://snvt.nl/professioneel-vertaler-of-tolk-inhuren/
And I do a search.Then I put for instance a first name and a second name of an existing member in the search area, it will give no results.
If I search for ‘Margriet’, I will get 1 result
If I search for ‘Hunter’, I will get 1 result too.
If I search for ‘Margriet Hunter’, I will get no results.What can I do to make the search Margriet OR Hunter?
Thank you
Saludo
RianneTopic: BuddyPress Emails
Hello, I was wondering if I have to use an outside email platform to send the email templates? Like mailjet or mailchimp.
Topic: BuddyPress Emails
Hello, I was wondering do I have to use an outside platform to send the email templates? Like Mailjet or Mailchimp?
I need to limit the entry of characters in a multiline textarea at the user profile settings (frontend). There are several questions about this in this forum with no real solution. Most of them are several years old.
As far as I see is buddypress using the tinyMCe editor together with this field.
On the tinyMCe blog they provide a solution to “How to limit characters and set a maxlength with TinyMCE”How can I use that in buddypress? I would need to use the wordcount plugin and edit the tini.init script.
If I can’t implement that in buddypress is there any other solution for this issue?Topic: Profile link is redirecting
We have a site that have BuddyPress and we installed the BP Classic plugin to keep the changes we had to our site after the version 12 update. On each of our Members pages, there is a Profile option and on that Profile option it is linked to /profile, but if you click on it, it will redirect back to that current member page. Same goes to Profile > View, it also have /profile/public link but it will also redirect to the current page when clicked.
This is a concern for us since we have Ahrefs audit on our sites and they highlighted this issue every time. Do we have an option to change it or maybe remove the links?