Hi, kashifkiduniya
Have you tried this geomywp.com/extensions/buddypress-members-directory-geolocation/ ?
Please check if there is an activation key there. Also please read this once https://buddypress.org/support/topic/buddypress-3-1-0-is-now-available/.
Thanks
I ended up going with Brajesh’s BP Activity Shortcode they do fantastic work on plugins for buddypress
but I am using buddypress?
Hi,
It is mentioned here https://buddypress.org/about/requirements/ and this is for WordPress https://wordpress.org/about/requirements/
WordPress clearly stated that it’s ‘Not required, but recommended for better security’
Thanks
Hi,
Please check this link http://buddypress.wp-a2z.org/oik_api/bp_email_recipientget_name/ and here you will find this filter:
return apply_filters( 'bp_email_recipient_get_name', $this->name, $this );
Hopefully, it will help you.
Thanks
Hi @tr3ntbuck,
According to my experience demos are always prepared using settings and if you have any queries regarding that then I guess you can ask pre-sale questions there as well. You can compare your idea/thought with BuddyPress functionality and then can see if it is going to fulfill your need or not.
Thanks
Hello, everyone!
After I have filled the registration form WP redirects me to the Homepage. In users list (Dashboard) I don’t see new user too.
Steps which I tried to resolve the problem:
1) WP in simple mode, not WPMS
2) Dashboard – Settings – checkbox “Users can register” checked
3) Disabled all plugins and checked BuddyPress registration function
4) Changed theme to another one. (I use OneCommunity theme by default)
5) Installed WP Mail SMTP (tried to send messages via php wp_mail & smtp). Both variants work for WP, also checked to send messages via Contact form 7 etc. BUT not sending any mail from BuddyPress
6) Tried to reinstall BuddyPress plugin, still not working
7) There is no hosting problems too…
8) I don’t see another user accounts in Users dashboard.
9) Switched between old and new BuddyPress templates…
10) Additional information:
– WP version 4.9.8
– BuddyPress 3.1.0
– Activated plugins (15): Anti-Spam by CleanTalk, bbPress, BuddyPress, Contact Form 7, No Category Base (WPML), OneCommunity Shortcodes, UpdraftPlus – Backup/Restore, UpdraftPlus – Backup/Restore, Wordfence Security, WP Mail SMTP, WP Sitemap Page, WP-Polls, WPBakery Page Builder, Yoast SEO Premium, WP Recaptcha Integration.
11) There is no any php errors (when I enable debug) and js errors in browser console.
I can’t find another reason why didn’t registration form not working…. Domain – barbiusa58.info
How I can fix it? Thanks in advance)
I am just getting started on my site. I have not purchased a theme or plugins yet as I am trying to find out what modification I can do on my own or what I cannot / how long it might take. I have looked at some themes for purchase for BuddyPress and I have looked at Peepso but I feel it is impossible to tell in either situation if the demos people are showing are all done with settings to modify the look of pages or if it the display changes are being done by writing code. BuddyBoss premium theme demos look nice and so does Peepso but I have not figured out if the look they are both showing is just alot of setting options or just them writing code.
In case anyone’s curious, I ended up changing the following in bp-core-avatars.php:
// If the uploaded image is smaller than the "full" dimensions, throw a warning.
if ( $avatar_attachment->is_too_small( $bp->avatar_admin->image->file ) ) {
bp_core_add_message( sprintf( __( 'You have selected an image that is smaller than recommended. For best results, upload a picture larger than %d x %d pixels.', 'buddypress' ), bp_core_avatar_full_width(), bp_core_avatar_full_height() ), 'error' );
}
Changed to:
// If the uploaded image is smaller than the "full" dimensions, throw a warning.
if ( $avatar_attachment->is_too_small( $bp->avatar_admin->image->file ) ) {
return false;
}
I realize changing anything in core files is a terrible idea, but no clue how to make it work otherwise. This basically doesn’t allow uploading any file under minimum dimensions.
I’ve been trying the same thing in bp-custom.php:
function check_avatar_upload() {
global $bp;
if ( $avatar_attachment->is_too_small( $bp->avatar_admin->image->file ) ) {
return false;
}
}
add_action( 'bp_core_pre_avatar_handle_upload', 'check_avatar_upload', 10, 3 );
When in bp-custom.php the above results in “HTTP error.” for all uploads. Changing the action to bp_core_avatar_handle_upload just uploads everything.
Hopefully it helps someone at least a little bit.
I have the same problem. I can’t access anything BuddyPress related except the settings panel in the admin dashboard.
Try using this hook bp_core_pre_avatar_handle_upload
Found in buddypress\bp-core\bp-core-avatars.php
Cool. Your fix doesn’t work for me because it’s a default install on a non modified theme with no other plugins active besides BuddyPress.
Perhaps it’s a hook priority issue – try using a number less than 10.
Or… Did you try using messages_message_after_save ?
Found in buddypress\bp-messages\classes\class-bp-messages-message.php
Thanks for posting, somehow I missed @frangdelsolar response so this reply is for both of your questions:
Short & Simple.. ok yea – it worked, but was very limited and buggy
We then hired 5 different programmers off upwork that swore they could make a custom calendar plugin better
Then we looked into custom buddypress development costs. Wow – you could have built anything from scratch for those prices.
The particular project I was the project manager but the funding ran out, but I sank a year of my life into it so I do still remember parts of that dilemma and the solutions that were in the works – if you wish to more – send me a msg
I do have 20 years experience in the business and have a good idea of which plugins work well together and which ones waste your time. If you let me know what your site is about and how you need a calendar to be integrated, I’ll see if I can point you in the right direction
Hi,
I have the same issue with BuddyPress version 3.0.0 and we’re using ActiveMember360 + BuddyPress for the members and I’ve tried debugging and found out the front end settings are working if ACmember360 Buddypress extension is turned off so I tried turning it off and the front end General Settings works.
Is this supposed to be?
Here are the steps I did:
1. Copied membership site to a dev server for debugging and started checking the settings
2. Tried deactivating plugins and the conflict is within BuddyPress and ACmember360
3. Tried degrading the Buddypress plugin but still doesn’t work
4. Found out the ACMember360 BuddyPress extension should be turned off for the front end user
5. General Settings to work
I don’t know tho what is the effect if we turn this off.
As of BuddyPress 2.0, last_activity is no longer stored in usermeta.
However, it is mirrored there for backward compatibility.
Instead, refer to the _bp_activity table.
My first reply included a link to code for insuring that all members have a ‘last_activity’ timestamp.
Did you follow the directions and run the code?
@damon18 to be honest, I’m actually overriding the nouveau theme from inside my child theme, like you’d like to do. I just sort of simplified the solution initially shared on this post for everyone since not everyone edits their themes or creates custom child themes for their projects.
So yes you’ve got the right idea but the correct file location would be
/wp-content/themes/my-theme/buddypress/groups/single/cover-image-header.php
so it’s without the /buddypress/bp-templates/bp-nouveau/ section.
Hope that helps 🙂
See the following with a temporary fix:
Removing Settings General tab redirect to Other Tab
Closing this thread to avoid forking the discussion