Search Results for 'buddypress'
-
Search Results
-
Good day I created new website with buddypress…
I have problem with Avatar uploading…Everytime I upload any picture as my avatar/profile picture..always get an HTTP error…how can I fix this…hope someone help me..im only new…thank you
Hello I had a question in continuation of the topic below ref removing the delete-group from group admins using the code provided below :
https://buddypress.org/support/topic/how-to-remove-tabs-from-group-admin-nav-2/#post-261003function turker_remove_group_admin_tab() { if ( ! bp_is_group() || ! ( bp_is_current_action( 'admin' ) && bp_action_variable( 0 ) ) || is_super_admin() ) { return; } // Add the admin subnav slug you want to hide in the // following array $hide_tabs = array( 'group-avatar' => 1, 'delete-group' => 1, ); $parent_nav_slug = bp_get_current_group_slug() . '_manage'; // Remove the nav items foreach ( array_keys( $hide_tabs ) as $tab ) { bp_core_remove_subnav_item( $parent_nav_slug, $tab ); } // You may want to be sure the user can't access if ( ! empty( $hide_tabs[ bp_action_variable( 0 ) ] ) ) { bp_core_add_message( 'Sorry buddy, but this part is restricted to super admins!', 'error' ); bp_core_redirect( bp_get_group_permalink( groups_get_current_group() ) ); } }Dan writes:
Get Ready! 2.4.0 will introduce important changes in Groups homes
“The function is still working, but not completely (tabs aren’t hidden). You probably need to complete it with $component (read above document)”
This code was written circa 2.2. Im not sure where/how to add the $component to get the code to work. Any assistance is appreciated thank you.
I have a user who keeps being unable to access their account. They get a message that they are using incorrect passwords. I have tried:
Putting in new passwords from the administrative area (multiple times)
Resetting their passwords using “forgotten password” (multiple times)
I have checked the database and the account looks to be normal. I have checked the database to be sure the password changes when we change it – and it does.
I deleted the account and opened a new one. That worked for a while, but then they got locked out again with the same message.
The only clue I have is that if I go into “users” and go to their account and click “log out everywhere”, the account seems to open again.Please help – he is a paying customer and I have had to refund him a months fee because of this problem. (I also had a previous user with the same problem – although with their new account that seems to be OK now).
As admin I am able to login OK.
Other users can also login OK.I am using WPLMS and buddypress 2.7.2
WordPress 4.6.1 running WPLMS theme.
My site is http://www.mashauri.orgHey Guys –
I’ve done some searching, but can only find posts from X years ago that suggest manually editing the DB.
The situation with our site (www.zetaunit.com) – is that it was first a WordPress site – then installing bbpress for forums, and now buddypress. So all our Members were registered before installing BuddyPress.
I imagine this is not an uncommon situation, but I’m not sure.
We have 100+ Members – but if I go to e.g. http://www.zetaunit.com/members/ – only 15 show up.
If not implemented already (maybe I missed it?) – a simple button in Tools, to Activate All Members, would be a great feature for these cases where Buddypress is not installed with zero Members first.
I want our community to be able to just go to Members, and start adding friends – but at the moment, unless I’ve missed something, they can’t do that, only with the 15 that recently posted in the bbpress forums, or however that ‘recent activity’ thing works.
Maybe I missed an obvious option somewhere? If so, please point me in the right direction 😉
Many Thanks,
(WP V 4.6.1, Avada Theme V 5.0.3)Topic: User Profiles Redirecting
Hi all,
First things first, I am using the below version of WordPress and BuddyPress.
WordPress 4.6.1
BuddyPress 2.7.2Don’t want to make the site public as it is for internal use for our company only, but the issue is pretty straight forward but complicated to fix. Since BuddyPress has been updated the user profiles will no longer function correctly, instead whenever any one clicks on their profile it redirects them back to the main home page.
So far I have tried resetting Permalinks, checking for spaces in usernames and reverting back to older versions but nothing seems to work.
It isn’t just the basic profile that this happens to, all the buddypress functions inside push a redirect to the home page.
Any suggestions would be great appreciated!
Regards
GaryI’m currently want to display a ribbon on certain profile pictures depending on the membership level my users have.
I’m currently rocking this code to achive this on the member listing and friendship listing:
CSS:
#buddypress #members-list li{padding-left:20px;} #buddypress #members-list li .action{margin-right:20px;} #buddypress #members-list li.premium {background-color:#fdf8e8;} .ribbon { position: absolute; left: -5px; top: -5px; z-index: 1; overflow: hidden; width: 75px; height: 75px; text-align: right; } .ribbon span { font-size: 10px; font-weight: bold; color: #FFF; text-transform: uppercase; text-align: center; line-height: 20px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); width: 100px; display: block; background: #79A70A; background: linear-gradient(#E9AD00 0%, #F79E05 100%); box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1); position: absolute; top: 19px; left: -21px; } .ribbon span::before { content: ""; position: absolute; left: 0px; top: 100%; z-index: -1; border-left: 3px solid #F79E05; border-right: 3px solid transparent; border-bottom: 3px solid transparent; border-top: 3px solid #F79E05; } .ribbon span::after { content: ""; position: absolute; right: 0px; top: 100%; z-index: -1; border-left: 3px solid transparent; border-right: 3px solid #F79E05; border-bottom: 3px solid transparent; border-top: 3px solid #F79E05; }functions.php:
function bp_visibility_add_member_visibility_css_class( $classes ) { global $members_template; if (user_can($members_template->member->id,'s2member_level1')){ $classes[] = 'premium'; } if (user_can($members_template->member->id,'s2member_level0')){ $classes[] = 'basic'; } return $classes; } add_filter('bp_get_member_class','bp_visibility_add_member_visibility_css_class'); //Mitgliederliste add_filter('bp_user_query_populate_extras','bp_visibility_add_member_visibility_css_class'); //freundesliste function add_ribbon(){ global $members_template; if (user_can($members_template->member->id,'s2member_level1')){ echo "<div class='ribbon'><span><i class='fa fa-diamond' aria-hidden='true'></i></span></div>"; } } add_action('bp_directory_members_item', 'add_ribbon');As you can see i added my function ‘bp_visibility_add_member_visibility_css_class’ to the 2 different filters with:
add_filter('bp_get_member_class','bp_visibility_add_member_visibility_css_class'); add_filter('bp_user_query_populate_extras','bp_visibility_add_member_visibility_css_class');It works just fine but i also need to ribbon to apear in the following places on every member profile with the membership level 1:
profile picture/avatar
activity feed
group activity stream
Does anyone knows to hooks/filters i need to attach my function and achieve this.By the way I’m currently running WordPress Version:4.6.1. and BuddyPress Version 2.7.2
Thanks for the help guys. It’s much appreciated.
If you need more Information please ask.
Hi,
There are two links on the left side of the admin toolbar: Login & Register
How do you remove them? does Buddypress add them? and where is the option to disable them if so?
I want non-users of the website to be able to view a Private Group’s member list. But I cannot find anywhere I can catch this redirect.
So far I’ve found..
This no access redirect must be happening from a call to the function bp_core_noaccess
I found the filter bp_group_user_has_access within the function bp_groups_group_access_protection … But this does not appear to fire for the group members screen when a logged out user tries to access.
I’m currently on WordPress version 4.5.4 and BuddyPress version 2.5.2
Thanks in advance!
Topic: Scroll down to…
Hi there!
Hi,
I am looking for solutions to How to automatic scroll down page when I click for example “messages” or “notifications” or “friends” on Main Menu.I would like to when user click “notifications” he can see your notifications instantly (automatic scroll down to “notifications” or whatever).
Please help!
–––––––
Reference: https://buddypress.org/support/topic/scroll-down-user-profile-page-2/
Solution there: Nothing.
Hi BuddyPress community,
can you help me with this:
How can I addd a member to a certain buddypress group automatically if he ticks certain checkbowes in his member profile?Thank you!
Cheers,
MattHello friends,
I spent a long time to learn using wordpress and create my own beautiful custom wordpress themes…
But for the last 3 days I am tryiing to run BuddyPress with the custom theme I designed…and after 3 days I am stuck tired of not being able to make my theme compatible with Buddypress…
I searched n read hundreds of topics but still I m confused…and buddypress is not working welll with my theme…
Kindly someone help and let me understand how to make buddypress compatible with my theme…or you can say how to make a buddypress compatible wp theme…
problems
– cover image is not showing
– activation page not loading
– registration page not loading
– profile image cropper not working…and a lot of other errors.. Pls let me know how to add buddypress to my theme… and make it work properly….
Million Thanks in Advance
Vickievik