Search Results for 'buddypress'
-
Search Results
-
Dear,
I would like to ask help for my buddypress plugin. In the past when i click on compose message, i could type a name and press shift + enter to add more persons. Now I can’t. It opens a new window with exact same imagescreen. When i try that now, it create a new window with message not send. I changed the theme and experienced exact the same problem.
could anyone help with this?Big Thanxs
Hi there
I’m looking to adjust the way BuddyPress refers to members across the board. I can’t spot anything in the PO language file…
For example, in the members list it refers to “viewing 1-20 of 2000 members”.
We have a paid members subscription within the business, and this is causing confusion – not all 2000 users in the directory are paid members. We want to change the name ‘members’ to ‘instructors’ to avoid confusion.
I see this is hardcoded in ./bp-members/bp-members-template.php – can this be overridden without editing the plugin directly?
Hi
I’m using BuddyPress and upon registration of users, the email notifications are sent using the hosting server which lands 100% of the times at spam folder.
to solve this I’ve installed the WP Mail SMTP plugin but this it didn’t affect BuddyPress Smtp settings.
Please someone with a solution to solve this.
ThanksTopic: Redirect
Hi,
i’m using bbPress und Buddypress with my Theme Enfold an WooCommerce.
Everything is fine, but when a want to login to the forum i cam to the Startpage of my Website, not direct into the forum.
Now i have to navigate to the forum page again to get into.
Nice would be to be automatically on the forum page after login.
How can i fix this?
Thank you for helping!
Topic: Buddypress not working
Hi! to some once that may be concern. My name is David and i run a website with some plugins and buddypress, but buddypress working incorrectly, it not show member profile page and all the link of profile papers. Some of plugins install are below
1. MyArcadePlugin
2. mycred
3. WordPress Version: 4.6.13
4. Queens Magazine Blog Version: 1.1.2
By Postman Themes
Website url: http://glee.cloud/blog/Am a novice but am using WP 5.03 with Buddypress 4.0 and bbpress 1.5.14. The site is https://908X0.org. It is not live and Registration has been disabled. New users have Subscriber role for buddypress and Participant for Forums. My problem: all new users I have created have the capability to Edit Pages after login. I thought it had something to do with my IP or browser but cleared the browser and sent the link to my site to a friend and he could see the Edit Page text in the admin bar. I disabled every plugin, including bbpress. The bug is still there. I have built an almost identical site that does not have this problem.
I am not a developer or a coder. I can follow explicit instructions to make changes in the C-panel or elsewhere, but most of the time I just expect things to work like they are supposed to. I can generally find solutions or work-arounds but this one has me stumped. I have been unable to find anything on line about this problem. Does anyone have any idea what may be causing this?
Topic: Registration not working
I’m not sure why but my registration page is suddenly not functioning properly.
After completing the details at mysite.com/register/ users are directed to the homepage rather than the page saying to check their emails for the activation link.
Activation emails are not being set and the info they enter on the registration page is lost (i.e. they’re not added to pending members).
I changed the copy in the on the registration page last week in the file at wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php – but I tested the page extensively afterwards and it seem to work fine and I didn’t touch any of the code, I just edited the page text.
It’d be great to get help soon as I’m currently running a promotion to join but no one can register so it’s kind of a nightmare!
Thanks guys. 🙂
I have a major issue with something causing a login error. I have racked my brain trying to trouble shoot this but I am new to a lot of this/rusty.
I have the latest editions of BP, WP and bimber.
The error does not show an error code.
When logging in on a test account. 6 accounts to be exact.. I have to login several times to show I’m logged in. Once logged in, certain actions show I’m not logged in anymore. At that time I go to log in on a second account and it’s says account a is still logged in.
I am pulling my hair out trying to fix this. I do not have a child theme set up. All customization has been done in main theme so I’m worried about switching themes to test that. I have disabled plugins and none seem to fix the issue. Please help.Desperately waiting
Site: ScottMaplesOfficial.com
Topic: Personal message form
I am using buddypress and the Nouveau template.
Problem 1)
The add friend button displays fine when user isn’t logged in. Once logged in, it goes away and users cannot add each other.Problem 2)
Users are having to try to login several times sometimes in order to log in. Any ideas?I am using the Bimber theme and have checked as many settings as i know how to check. i am still new to a lot of this. Any help is appreciated
Hello everyone,
I have a problem inserting an image as iframe/embedded link from the Microsoft OneDrive cloud into a activity. It seems to get filtered out. I figured out that some html-tags are not allowed, so it tried to activate the <iframe>-tag via the bp_activity_allowed_tags hook. As a result I now get an empty frame, but the content is still missing. Any ideas how to fix that?
Thank you
Hi, everybody!
Could you help me to set set display_name = xprofile ‘first_name’ + ‘last_name’ at the user registration?
I’ve tryed this code:function change_user_defaults($user_id) { $user = get_userdata($user_id); $mv_first_name = xprofile_get_field_data( 26, $user_id ); $mv_last_name = xprofile_get_field_data( 11, $user_id ); $name = $mv_first_name . ' ' . $mv_last_name; $mv_login = $user_id . stristr($user->user_email, '@', true); if ($name !== ' '){ $args = array( 'ID' => $user_id, 'display_name' => $name ); wp_update_user( $args ); } } add_action( 'xprofile_updated_profile', 'change_user_defaults' ); /* but this works only after manual BuddyPress profile update */ /* I also tried these hooks too */ add_action( 'bp_core_signup_user', 'change_user_defaults' ); add_action( 'bp_core_activated_user', 'change_user_defaults' ); /* but it didn't work at the user registration */