Replies
- Brajesh Singh on September 5, 2022 at 5:01 am in reply to: [Resolved] Handling Acceptance Checkbox field from php? – BuddyPress Xprofile Custom Field #46326
Hi Richard,
Welcome to BuddyDev support forums.I am not sure how you add the checkbox on the login page as our plugin does not add that.
Still, our plugin stores the value in the xprofile data. You will need to add a form and then on form submission, you will need to update the field using xprofile_set_field_data($field_id, $user_id, $value ); to set it.The purpose of the xprofile terms field to to simply store the preference and does not do anything else.
I hope it helps.
Regards
Brajesh Hi Talia,
Thank you for the question.I will suggest approaching BuddyBoss support for this as they are in an advantageous position and can add the support.
Regards
Brajesh- Brajesh Singh on September 5, 2022 at 4:41 am in reply to: [Resolved] First member type field cancels the second in registration #46324
Hi Carsten,
The member types fields are not supposed to manage the above use case.We have recommended against using multiple member type field and you should try to convert this scenerio into using only one fields.
The problem with having multiple field is the plugin does not understand the intention and the fields will overwrite each other.
Regards
Brajesh - Brajesh Singh on September 5, 2022 at 4:39 am in reply to: Auto-subscribe new users to bbPress forum #46323
Hi Ahmed,
Thank you for your question. I am sorry, we are unable to work on it at the moment.Regards
Brajesh Thank you for confirming.
Regards
Brajesh- Brajesh Singh on September 5, 2022 at 4:37 am in reply to: [Resolved] Eliminating the “What’s New” line on the user Profile->Activity #46321
That is the easiest way to do it everywhere. Otherwise, you can do it in buddypress/groups/single/activity.php, buddypress/members/single/activity.php and buddypress/activity/index.php
Regards
Brajesh Hi Chris,
you may add the following css to hide it..item-list-tabs .count { display:none; }Regards
BrajeshI believe you can adapt the css from one of the existing themes or add your own as the last resort.
Regards
Brajesh- Brajesh Singh on September 3, 2022 at 8:13 am in reply to: [Resolved] Eliminating the “What’s New” line on the user Profile->Activity #46308
In that case, you will need to edit the buddypress/activity/post-form.php to completely remove it.
Regards
Brajesh Hi Chris,
Thank you for the question.Yes, it is possible. You will need a plugin that can show the field as shortcode. we have a plugin for it.
You can install this plugin and then use the following shortcode in the tab content
[bpsc-profile-data context='displayed' field='field name or id' ]Regards
Brajesh