Search Results for 'buddypress'
-
Search Results
-
Topic: Page not found message
Hi,
I followed different tutorials to instal buddypress step by step. But still i got the message not found page for the page’s: PROFILE, NOTIFICATIONS, MESSAGES, FRIENDS, GROUPS, SETTINGS. And i get a blank page to register.
I already connect the right pages in the “Pages” tab in buddypress settings.. And still i get the message:
Not Found
The requested URL /members/admin/activity/ was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.Or when i trie it with an other account:
Not Found
The requested URL /members/juuderd/profile/ was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
I also installed a theme that is compatible with buddypress so i don’t know what i’m doing wrong anymore. Can someone please help me>
Hi all,
Curious if anyone has experience using LMS’s on top of a Buddypress social community site. I’m building out a creative community that ties together social and collaborative elements. I know there are dedicated LMS templates, and clear LMS plugins, but just curious what’s been done out there integrating the classes/modules into group activity, etc.I’m currently running Commons in a Box plugin on Divi as my BP install, and adding plugins as needed, but wondering what elegant solutions are out there.
I’m not a coder, fyi.
Thanks all!
Damonhello i added buddypress offline registration in my menu but it doesnt show up?
i select that everybody can registrationlogin works perfect and when i activeted the toolbar(on top of the website) i can registration with succes.
Hope you guys can help me out
Greetz
Topic: Theming & Customization
I’ve been working on my theme development and got the basic styling pretty much where I want it. Now I’m trying to make some adjustments to the user profile page, like removing the @ from in front of the user name. I’ve tried making a copy of member-header.php and placing that in my theme directory to no avail. I’ve also tried editing the same file located in vwrx-theme\bp-themes\bp-default\members\single\ still with no luck.
How can I achieve this? I’d like to make some other changes to buddypress, like displaying a users posts/uploaded photos in a gallery etc on their profile. Is there any recommended plugin or way to achieve these goals.
My website, still undergoing development, can be found at http://www.vwrx-project.co.uk
WordPress v4.6.1
BuddyPress v2.6.2
Sites are restricted to client employees, cannot provide link.We are running two separate BuddyPress sites, each on their own install of WordPress. Users are able to register for the site using BuddyPress register and activate pages.
BuddyPress seems to be creating numerous duplicate pages each time a user registers. This is not expected and does not appear to be normal.
In BuddyPress Settings > Pages, the registration pages are assigned as:
Register: page name “Register” slug domain/register/
Activate: page name “Activate” slug domain/activate/There are 150 pages named “Account Activated” with slug domain/account-activated-X, where X is the appended number of the duplicate.
There are 270 pages named “Activate Your Account” with slug domain/activate-X, where X is the appended number of the duplicate.
There are 422 pages named “Create An Account” with slug domain/register-X, where X is the appended number of the duplicate.
There are 218 pages named “Check Your Email To Activate Your Account” with slug domain/register-X, where X is the appended number of the duplicate.
In addition there are also several pages named with a user’s Profile Name and slug domain/profile-name, with numerous duplicate pages /profile-name-X; not all users have had pages created in this manner.
Appreciate any considered thoughts on what is causing this or where we should look to resolve.
Hi,
On my site, the BuddyPress drop down menu that is located in the WordPress adminbar extends to below the bottom of some screens, especially mobiles, so it needs to be scrollable. I have tried adding overflow: visible to the .ab-sub-wrapper class but that hasn’t worked. Does anyone know how I can get this to work?
Thanks!
Simon
Hi guys, I’m trying to create a new “order by” item in members loop. I’ve used this code in functions.php to change the sorting alphabetically functionality:
/* Sorting by lastname in buddypress*/ function alphabetize_by_last_name( $bp_user_query ) { if ( 'alphabetical' == $bp_user_query->query_vars['type'] ){ $bp_user_query->uid_clauses['orderby'] = "ORDER BY (select value from pwisa_bp_xprofile_data where field_id = 2 and user_id = u.ID) "; } } add_action ( 'bp_pre_user_query', 'alphabetize_by_last_name' );That code works. But now I want to use another item.
I’ve created the new item in my customized: /members/index.php file.
<option value="country">[:es]Por País[:en]By Country[:pb]By Country[:]</option>But if i do this in my functions.php
/* Sorting by lastname in buddypress*/ function alphabetize_by_last_name( $bp_user_query ) { error_log("---" . $bp_user_query->query_vars['type']); if ( 'alphabetical' == $bp_user_query->query_vars['type'] ){ $bp_user_query->uid_clauses['orderby'] = "ORDER BY (select value from pwisa_bp_xprofile_data where field_id = 2 and user_id = u.ID) "; } if('country' == $bp_user_query->query_vars['type'] ){ $bp_user_query->uid_clauses['orderby'] = "ORDER BY (select value from pwisa_bp_xprofile_data where field_id = 7 and user_id = u.ID) "; } } add_action ( 'bp_pre_user_query', 'alphabetize_by_last_name' );It won’t work. the variable $bp_user_query->query_vars[‘type’] is alwas getting: alphabetical value.
What can I check or change to fix this? help.
Topic: Admin notes on profiles
I’m using Buddypress in my community site. I’d like to add some features so my Buddypress I’m not sure if they are available in plugins.
These are the features I’d like to add.
As the administrator of my site. Under all user profiles I’d like to be able to leave notes on individual users that only admins of my site can read and update. I’d like to be able to leave notes that admins/moderators can read. So like a place holder where I can leave notes with a toggle switch which lets me decide if admins only can read or admins/moderators can read.With every note dated and in its own thread.
Is this possible to achieve?