Replies
- Brajesh Singh on November 29, 2017 at 7:00 pm in reply to: [Resolved] BuddyPress Multi Network Not Showing users on Member Page #11975This reply has been marked as private.
- Brajesh Singh on November 29, 2017 at 6:24 pm in reply to: [Resolved] How to change size of avatar or make lightbox work on avatar #11971
Hi Carsten,
Thank you.You have done it correctly.
Uploading new avatar should take this size. If it does not work, please point me to the page section. Most probably the theme page/code is using fixed width while fetching avatar.
Regards
Brajesh - Brajesh Singh on November 29, 2017 at 5:15 pm in reply to: [Resolved] BuddyPress Multi Network Not Showing users on Member Page #11969This reply has been marked as private.
- Brajesh Singh on November 29, 2017 at 3:58 pm in reply to: [Resolved] BuddyPress Multi Network Not Showing users on Member Page #11967This reply has been marked as private.
- Brajesh Singh on November 29, 2017 at 3:51 pm in reply to: [Resolved] BuddyPress Multi Network Not Showing users on Member Page #11965
Hi Again,
I see that WooCommerce provides a hook. So, If it is WooCommerce registration,
adding the following code to bp-custom.php/** * Add user registered via WooCommerce to current network. * @param $user_id */ function buddydev_add_wc_user_to_network( $user_id ) { if ( ! function_exists( 'mnetwork_add_user' ) ) { return ; } $blog_id = get_current_blog_id(); mnetwork_add_user( $user_id, $blog_id ); } add_action( 'woocommerce_created_customer', 'buddydev_add_wc_user_to_network' );And then registering a user will work. Can you please try that.
- Brajesh Singh on November 29, 2017 at 3:31 pm in reply to: [Resolved] BuddyPress Multi Network Not Showing users on Member Page #11963
Hi Jeremy,
I will need some time with WooCommerce today.
For me, BuddyPress is the primary plugin, so with something like this(a major plugin like WooCommerce enters the picture), It needs some extra time. I wish I was aware earlier that the registration was handled using WooCommerce.The Multi Network plugin supports BuddyPress registration by default only.
- Brajesh Singh on November 29, 2017 at 2:02 pm in reply to: Issue with provided code (profile tab depending to member type) #11960
Hi Beuza,
Are you using a 3rd party plugin or is it normal group invitations? I will try to help but not sure if I will be of much help. - Brajesh Singh on November 29, 2017 at 12:54 pm in reply to: [Resolved] How to use Username Availability Checker and Login with Ajax #11925
Hi Alex,
Thank you.
I appreciate the kind sentiments.We don’t have any donate link. I sincerely appreciate the feeling though.
Thank you 🙂
Brajesh - Brajesh Singh on November 29, 2017 at 11:44 am in reply to: [Resolved] How to use Username Availability Checker and Login with Ajax #11922
Hi Alex,
Please upgrade to 1.1.2(I have renamed the plugin to WordPress Username availability checker).It is compatible with the Login with ajax. Please do note that the plugin is compatible with WordPress multisite out of the box.
The porblem arises when some plugin change structure and the element selectors don’t work.
Please check and let me know if it works for you or not?
Thank you
Brajesh - Brajesh Singh on November 29, 2017 at 9:07 am in reply to: [Resolved] How to use Username Availability Checker and Login with Ajax #11916
Hi Alex,
1. I tested with normal WordPress/WordPress multisite registration page(wp-login.php/wp-signup.php) and it worked. I haven’t tested with Theme My Login and I am guessing that they are most probably modifying the login/signup page structure.2. Yes, I can put some code to show how to make it compatible with Login with ajax. It’s easy and I will post it today.
3. Multisite Auth:- I am not sure what type of compatibility will be needed. The plugin simply checkes for username available(Not currently in use by any other user) and that’s it. I am not sure what type of compatibility you will need here.
Regards
Brajesh