Replies
- Brajesh Singh on December 3, 2021 at 10:00 am in reply to: [Resolved] Auto Join not working for new users #41910
Hi,
Thank you for checking.I have looked into the plugins. Fluent forms does offer a hook “fluentform_user_registration_completed” when the user registration is complete.
I am pushing an update very soon today with this support. I will need your help testing if that works or not.
Regards
Brajesh - Brajesh Singh on December 3, 2021 at 1:55 am in reply to: [Resolved] Post Meta Display Control Not Updated Post List #41906This reply has been marked as private.
- Brajesh Singh on December 2, 2021 at 11:15 pm in reply to: [Resolved] Post Meta Display Control Not Updated Post List #41902
Hi Kyle,
Thank you for the patience.I have looked and found the issue.
1. You are using a custom post type(recipe) which does not support “content” or “excerpt” fields.
2. In our BuddyBoss entry template, we call the_excerpt() if the $post->post_excerpt is empty(which is true for this post type)
3. WordPress filters on the excerpt using “get_the_excerpt” and if the excerpt is empty, It use $post->post_content(after applying the_content) filter. Then trims the value to create new excerpt.4. we are also using the filter “get_the_excerpt” to append/prepend the meta in posts loop and “the_content” filter to append meta on the single posts screen.
5. Due to the above filters, if you have added some meta to be displayed with post and post content is empty, that meta becomes the generated content and excerpt is created from that.
6. That’s why you are seeing some of the meta fields which you enabled for single post screen on the posts loop with the post loop meta.
If you do not want to support the content/excerpt in future for the Recipe post type, there is a simple solution. Override the posts list template for recipe posts type in your child theme(for BuddyBlog).
The other way is to have the custom excerpt support enabled and have the excerpt field customizable by the user. It won’t need any template override in the child theme.
Please let me know if you do not plan to ad the support for content/excerpt for recipe in future. i will supply the files then.
Regards
Brajesh - Brajesh Singh on December 2, 2021 at 2:05 pm in reply to: [Resolved] Auto Join not working for new users #41899This reply has been marked as private.
- Brajesh Singh on December 2, 2021 at 1:57 pm in reply to: [Resolved] Auto Join not working for new users #41897
Hi,
thank you.1. all the users who register on the site via any means will have access to BuddyPress/BuddyBoss. The reason is the users are part of WordPress core. The difference is how each plugin handles and what events are fired by each of them.
Different plugins fire different events but once the user registers, they are all same.
we have been using BuddyPress/BuddyBoss activation event which will be every different from Fluent Forms. since our plugin does not see that event, It does not update the data.
We plan to look through fluent form registration process and check what event they fire on registration(after synchronization of BuddyPress profile Data). Once we find that, we will add that as a trigger in our plugin.
yes, Please do share the access to development/staging server. Please use private reply here or our contact form for the same.
Thank you
Brajesh - Brajesh Singh on December 2, 2021 at 1:38 pm in reply to: [Resolved] Auto Join not working for new users #41895
Please help me understand this:-
Is the field mapping to BuddyPress available with Free version or Pro version? If it is available in pro version, Please provide access to it.
Thank you
Brajesh - Brajesh Singh on December 2, 2021 at 1:37 pm in reply to: [Resolved] group tab plugin – cant associate some specific groups #41894
Hi,
I am sorry but the plugin does not have any issue like this. It is probably a conflict.Please share the list of active themes and plugins. Also, are you using any code to filter groups list anywhere in BuddyPress?
Please let me know and I will assist.
Regards
Brajesh - Brajesh Singh on December 2, 2021 at 1:35 pm in reply to: [Resolved] Suspended users can be messaged from existing message threads #41892
Hi Nifty,
Thank you.I do have access to the theme. Will do testing and get back to you in next 2 working days.
Regards
Brajesh - Brajesh Singh on December 2, 2021 at 1:33 pm in reply to: Looking to Show Buddypress Form to only Site admin/Manager #41891
Hi,
Welcome to BuddyDev support forums.I am sorry, simply removing the redirect is not going to help much as there are 2 many other places where there will be checks for logged user when you submit the form.
My suggestion will be to looking for an alternative to add support for BuddyPress Fields on user registration in the Dashboard->Users->add New page.
There does not seem to be any plugin available for this and it is not feasible to achieve in few lines of code, so I will suggest an alternative).
You should register the user from Dashboard->Users->add new and then go to dashboard->Users and edit the profile of that user. You will find the “Extended Profile” section. You can add the xprofile data there.
Regards
Brajesh - Brajesh Singh on December 2, 2021 at 1:31 pm in reply to: [Resolved] Auto Join not working for new users #41890
Hi,
by activation, I mean the action hook used by BuddyPress when it activates user account. Different plugins can use different hook. Since you are using the FF for registration, It is not calling BuddyPress’s activation hook(you can confirm with the original developers of FF).Coming back to your reply, I assume that the free Fluent Form plugin allows mapping of BuddyPress fields to form fields. If that’s the case, our team will test and make sure it works with Fluent Form Registration/Activation by day end tomorrow.
Regards
Brajesh