Replies
Is there any progress on this
- Tosin on August 18, 2020 at 11:17 am in reply to: Change BuddyPress Force Profile Photo plugin redirection #32538
Ok thanks for the feeback I will be expecting an update from him
- Tosin on August 15, 2020 at 7:01 pm in reply to: Change BuddyPress Force Profile Photo plugin redirection #32480
Gentle reminder sir
Thanks
- Tosin on August 14, 2020 at 1:58 am in reply to: [Resolved] Facebook Like User Activity Stream For BuddyPress update crashes site #32387
Hello,
So sorry to trouble you I just noticed that the plugin is not displaying any activity for all my users please note that i’m using the buddypress follow plugin, maybe the recent update no longer supports the buddypress follow plugin. I had to revert back to version 1.2.6
Thanks
- Tosin on August 13, 2020 at 4:05 pm in reply to: [Resolved] Facebook Like User Activity Stream For BuddyPress update crashes site #32379
No problems again the recent update worked perfectly
Thanks
- Tosin on August 12, 2020 at 3:22 pm in reply to: [Resolved] Update WordPress 5.5 – Mediapress shows no Galleries ?? #32337
This recent wordpress update will break a lot of themes and plugins due to the upgrade to jquery migrate
But the wordpress team provided a fallback solution at https://wordpress.org/plugins/enable-jquery-migrate-helper/
See more info at https://wptavern.com/major-jquery-changes-on-the-way-for-wordpress-5-5-and-beyond
Maybe this info might help
- Tosin on August 12, 2020 at 3:19 pm in reply to: [Resolved] Facebook Like User Activity Stream For BuddyPress update crashes site #32336
Any update sir this is a little bit urgent
Thanks
- Tosin on August 12, 2020 at 9:16 am in reply to: [Resolved] Facebook Like User Activity Stream For BuddyPress update crashes site #32322This reply has been marked as private.
- Tosin on August 11, 2020 at 8:40 pm in reply to: [Resolved] How to Invalidate Email with Spaces in BuddyPress During Registration #32305
Hello Ravi,
This problem is now solved the updated code you provided solved the space problem. All my users can now login properly.
Thank you very much, i’m really grateful
- Tosin on August 11, 2020 at 2:00 pm in reply to: [Resolved] How to Invalidate Email with Spaces in BuddyPress During Registration #32295
After further investigations i’ve found the culprit code below
/** * Email login support for bp-branded-login plugin */ add_filter( 'wp_authenticate_user', function( $user ) { if ( isset( $_POST['log'] ) && ! is_email( $_POST['log'] ) ) { return new WP_Error( 'invalid_email' ); } return $user; }, 10 );
Please can this be improved to prevent invalidation of email addresses with spaces at the back
Thanks