Search Results for 'buddypress'
-
Search Results
-
Hello and thanks for support,
I have WooCommerce website and integrated BuddyPress for customers community.
I had a landing page as a static home page for my site, but unfortunately BuddyPress activity page is a dominant home page now.
Checked the site home page from site settings, it is my landing page.
Checked BuddyPress settings pages and nothing to edit as home page or else.Also when I tried to access my best from different device, it asks me to activate account and provide activation key… it seems weird because my website have a landing page open for all people.
Hi Guys,
I have a serious concern. I am unable to edit my registration form on the Bakery Builder. When you look on my page you’ll see that there’s not register button and half of the profile content has just disappeared. It was working before! But now I can’t edit the page to fix it because the bakery builder editor doesnt load. I have tested all plugins to find the cause and when I turn buddypress off the builder then loads but there’s no content because the content is on buddypress. Super confusing! Need urgent help please.
Here’s my page https://member.myinnerinfluence.com/register/
Thanks in advance, looking forward to your response.
I am using the buddyPress BP Profile Search plugging to filter members in my website,I create a form to filter members by Categories,But I had an issue when i go to page number to in the result of searching,I tried to update and making some modification in the plugging itself but i still facing this problem .
the result of search at the first time it come with the right result and number of pages is correcte, but when we click on the second page or any other pages i lost the filterI personally find the up/down animation of the Read More animation to be distracting and slow.
I found similar discussions without answers:
Modifying the activity “read more” links animation in global.js
Is it possible to remove this animation without modifying the core .js files?
Thank you!
Hello,
Have integrated BuddyPress with WordPress and I want my subscribers to be able to access the Settings sections and be able to change their passwords and email addresses.
When they try changing their passwords..They get logout the error message “You must log in to access the page you requested”
I also tried and deactivated all the plugins and changed the theme but am still getting the same issue.See my link below
Topic: customizing buddypress pages
Hi,
I am using elementor but after disconnecting the group pages from BuddyPress Pages, I import a template and save the page. Then I again connect the page to BuddyPress Groups. However, after the connection, the formatting is all lost and the page appears plain white. How can I avoid this? I am asking because I want to give a background colour to the activity, group and members pages. If I use a templated after importing it. does Buddypress suppress all the formatting in the template?
Thanks
Hi all,
Experienced in web design but new to WordPress. Working on a theme which relies on buddypress.
I would like to create a C.V. type area on the user’s profile. One section of this area is a list of qualifications. Currently, users can list their qualifications in a textarea.
Instead, I would like to allow users to fill in three fields in that section. So they have ‘qualification name’, ‘result’ and ‘link’. I would also like to allow users the option of uploading an image of their qualification.
I can’t work out where to begin. I downloaded the BuddyPress Custom XProfile Fields plugin, but I can see that this only allows single-field entries.
I have also found this guide: https://codex.buddypress.org/themes/guides/displaying-extended-profile-fields-on-member-profiles/
But, again, it only shows how to display a single field.
So here there are two problems. The secondary one is that users must be able to create new instances of this qualifications fieldset dynamically, though I expect that the solution to this will become apparent when I’ve solved the main problem.
I need to know how to combine fields, so that when a user enters qualification name, grade and link, it is all stored together, or somehow related in the database, so that a single reference can be used to display each field relating to that particular qualification.
Topic: Log in does not appear
Hi,
Can someone please tell me how to get the ‘Log in’ on my main menu on my header? I see ‘Register’, ‘Groups’, Activity’ but not ‘Log in’.
The ‘log in’ does appear on the black top bar along with ‘register’ but I want to remove the top bar. I
have disabled the top bar in my theme but it continues to appear, so I think it is the BuddyPress top bar. How can I remove it?Thanks
Topic: Emails not being sent
So I’m working on a little project, trying to grasp the workings of WordPress. I’ve created a website, currently still on localhost, and installed buddypress. My problem is that I can’t seem to send buddypress emails like the activation one, even though regular WordPress emails like the reset password email are sent correctly. I currently have WP Mail SMTP setup with a personal Gmail account of mine so I can easily see which emails are sent or not and even though WordPress says the activation emails are sent as the counter in the user tab displays, in my email no mails were ever sent. What can I do to troubleshoot the situation?
Edit: buddypress version is 9.0.0
So, I’ve had a few of my users complaining today that when they try to change their passwords, their accounts just break. neither the old nor the new work.
I went and made a new test account and tried this out to the same results. After disabling all plugins it works fine. Enable JUST BuddyPress and it’s back to breaking accounts.
Manually making a new password from the admin side fixes it and enables login again but once changed, breaks again.
Hi everyone, I already try some solutions like
add_filter( ‘bp_nouveau_activity_content’, ‘do_shortcode’,);
or
function test() {
add_filter( ‘bp_nouveau_activity_content’, ‘do_shortcode’, 1 );
}
add_action(‘bp_init’, ‘test’);But I can’t solve this problem, somebody knows how to enable the shortcodes in activity feed? thnks
Can i have review discussion before public with buddypress?
Hello,
I’m working on a mobile app to interface with our BuddyPress 9.0.0 website via the BP API. Our website has some xprofile group fields of the “checkbox” type, each group with a set of “options” which the user can set to be true or false. For example, there is a group called “Pets” under which the user can select one or more of the specified check boxes such as “Dog”, “Cat”, “Cow”, etc.
I am having trouble trying to update this type of “checkbox” field using Postman. The update works fine for fields of type “textbox” and “selectbox”, but doesn’t work for the “checkbox” type.
The endpoint is “/buddypress/v1/xprofile/<field_id>/data/<user_id>” (POST operation, here the field_id I am using is the id of the parent group field)
The JSON in the body of my call is
{ “context” : “edit”, “value”: [“Dog”, “Cat”]}As mentioned before, if I try the same post call with a field of type “textbox” or “selectbox”, it works fine, but if I post to a “checkbox” field it just clears the existing data and does not set it to the new values.
Any ideas what I may be doing wrong here?
Hi,
Using
function profile_tab_event() { global $bp; bp_core_new_nav_item( array( 'name' => 'Events', 'slug' => 'event', 'screen_function' => 'event_screen', 'show_for_displayed_user' => false, 'position' => 70, 'parent_url' => bp_loggedin_user_domain() . '/event/', 'parent_slug' => $bp->profile->slug, 'default_subnav_slug' => 'event' ) ); } add_action( 'bp_setup_nav', 'profile_tab_event' ); function event_screen() { // Add title and content here - last is to call the members plugin.php template. add_action( 'bp_template_title', 'event_title' ); add_action( 'bp_template_content', 'event_content' ); bp_core_load_template( 'buddypress/members/single/plugins' ); } function event_title() { echo 'Events'; } function event_content() { echo 'Content'; }I created a new tab for users. But how can this be limited to specific user types? Different user types see different tab and/or different content in the tab?
I suppose it could use this code:
$member_type = bp_get_member_type( bp_displayed_user_id() ); if ( $member_type == 'userA' ) {Though not sure how to apply it.
Any suggestions would help.
using buddyboss theme
WordPress 5.8
BuddyPress 9.0.0
bbPress 2.6.6
AuthorReady.com (paid member site, so link won’t help much)I recently installed bbPress and BuddyPress on my existing paid membership website. The forums and groups are part of the membership and not viewable by the public. I created forums and topics for each group; however, when I try to open a topic in the group’s forum, it will display the first topic, regardless of the URL.
For example, if I am on my group’s forum page (authorready.com/groups/action-thriller/forum/) I see two forum topics: Beta Readers and General Discussion. When I select Beta Readers (authorready.com/groups/action-thriller/forum/topic/action-thriller-beta-readers/), it displays as expected. However, when I click the second topic for General Discussion, the URL is correct (authorready.com/groups/action-thriller/forum/topic/action-thriller-general-discussion/), but it displays the Beta Reader information instead.
I deactivated BuddyPress and the bbPress forums work as intended. The issue is isolated to how they display in the BuddyPress groups. Any ideas why this is happening and how I can fix it?