Replies
- Brajesh Singh on October 23, 2018 at 2:58 am in reply to: [Resolved] How to synchronize Woocommerce Membership Levels with Buddypress Groups #18205
Hi Rudolf,
I am sorry for the inconvenience. Here are the answers and some suggestions.Is it right that I have to change the member type of existing members manually and this would add them to the assigned group automatically?
Yes.
I wanted to test all the steps just to find out that the first step doesn’t work.
I am sorry, can you please tell me the issue? Is it that you are unable to associate group with member types? If that is the case, can you please type a few letters and see it is suggesting?
If it is not suggesting, There are two possible reasons. Does your site restricts access? It might be blocking the ajax call. Or do you have any kind of group filtering using code/plugin enabled?
I tried to assign users to a member type on the all users page.
It looked as if it was working but did not.What happened? After refresh, did you see the member type column having the member type or not? Are you on multisite or normal WordPress?
Please remove the xprofile field if you don’t need it. It is only needed if you want to let users choose their member type.
Yes, There are other ways to list users. I have a question though. Are you filtering your member list using any code or plugin?
If you want, I can setup the plugin on the site for you and you can take it from there. In that case, I will need temporary access to the admin.
Regards
Brajesh - Brajesh Singh on October 23, 2018 at 12:21 am in reply to: Code Snippet 'Add Xprofile fields to the member code' #18202
Please share the contents of your theme’s members-loop.php on pastebin.
Thank you
- Brajesh Singh on October 23, 2018 at 12:14 am in reply to: [Resolved] Moderation tools support for posts? #18201
Hi Richard,
I am sorry for the delayed update. We have got the post type working. The issue that has caused delayed is related to admin deletion of log/reports etc.It is inconsistent and I have been working on to make it more consistent. I will publish the release for sure today(IST). It may be late as I still need to sort out the log and report deletion in a consistent way.
Thank you for your patience.
Regards
Brajesh - Brajesh Singh on October 22, 2018 at 11:56 pm in reply to: Code Snippet 'Add Xprofile fields to the member code' #18199This reply has been marked as private.
- Brajesh Singh on October 22, 2018 at 11:29 pm in reply to: Code Snippet 'Add Xprofile fields to the member code' #18197This reply has been marked as private.
- Brajesh Singh on October 22, 2018 at 11:21 pm in reply to: Code Snippet 'Add Xprofile fields to the member code' #18194
Hi Carsten,
Thank you.Everything is correct except the field id is set to 1 instead of 478 in the code. Please update and check that.
- Brajesh Singh on October 22, 2018 at 11:13 pm in reply to: Code Snippet 'Add Xprofile fields to the member code' #18192
Hi Carsten,
Since we are using field ID here, the quotes are not needed.We don’t use backtick in php. It is single or double quotesPlease verify the correctness of field id again and make sure that the user has data for Age field.
Also, if feasible, Please share me your complete bp-custom.php on pastebin(and link here).
I can look into it and find the problem.
Regards
Brajesh - Brajesh Singh on October 22, 2018 at 11:07 pm in reply to: Gallery creation Email notifications #18190
Thank you Saxena.
The plugin is not available yet but we will be able to have it by the end of this week.
I will post back after the release.
Regards
Brajesh Thank you for sharing the details Kino.
It makes much better sense to me . I sincerely appreciate your kind words.
Will be pushing a release today and writing back.Regards
Brajesh- Brajesh Singh on October 22, 2018 at 11:00 pm in reply to: Code Snippet 'Add Xprofile fields to the member code' #18188
Please put the following in your bp-custom.php
/** * Show age field in members directory. */ function buddydev_show_age_field_in_directory() { $field_id_or_name = 578; // You can either use field name or ID. echo xprofile_get_field_data( $field_id_or_name, bp_get_member_user_id() ); } add_action( 'bp_directory_members_item', 'buddydev_show_age_field_in_directory' );Does this work for you?