Replies
Hi Heather,
I am sorry for the issue. I am not aware of any conflict.Can you please provide me the list of active plugins and also your registration process(e.g Registering via default WordPress, BuddyPress, WooCommerce etc..)
Thank you
Brajesh- Brajesh Singh on July 29, 2022 at 10:01 am in reply to: [Resolved] Custom Fields Per Role in BuddyBlog Pro #45856
Hi Chris,
hope you are doing well.Please upgrade to BuddyBlog Pro 1.2.9 and put this code in wp-content/plugins/bp-custom.php or in your themes functions.php (Or if you are using a code snippet manager, you can put it using that)
/** * Filters BuddyBlog Pro form for roles. */ add_filter( 'bblpro_post_type_associated_form_id', function ( $form_id, $post_type ) { if ( ! is_user_logged_in() || 'ccwky_announcements' !== $post_type ) { return $form_id; } $roles = wp_get_current_user()->roles; if ( in_array( 'subscriber', $roles ) ) { $form_id = 27931; } else if ( array_intersect( array( 'staff', 'administrator' ), $roles ) ) { $form_id = 27932; } return $form_id; }, 10, 2 );It will show the specific forms for the roles.
Regards
Brajesh - Brajesh Singh on July 27, 2022 at 7:08 pm in reply to: [Resolved] BuddyBlog Checkboxes Aren’t Visible #45851
Thank you Chris.
I am glad it is resolved.Regards
Brajesh Hi Heather,
Welcome to BuddyDev support forums.
Please check your account. I have added the plugin to your account.I have left the other plugin also enabled for download.
Please let me know if it works for you or not?
Thank you
Brajesh- Brajesh Singh on July 26, 2022 at 9:47 pm in reply to: [Resolved] Custom Fields Per Role in BuddyBlog Pro #45843
Hi Chris,
Thank you.Which post type are you using? Is it the default Post post type?
Regards
Brajesh - Brajesh Singh on July 26, 2022 at 9:32 pm in reply to: Conditional Profile Fields not working with Repeater Fields #45842
Hi jabagh,
Welcome to BuddyDev support forums.I am sorry, the repeater field is not supported. The plugin only supports basic fields.
Regards
Brajesh - Brajesh Singh on July 26, 2022 at 9:31 pm in reply to: [Resolved] Page that shows only user with specific profile field value #45841
Thank you.
Hi Chris,
Thank you. I am expecting it sometimes in the next month.Regards
Brajesh- Brajesh Singh on July 26, 2022 at 9:30 pm in reply to: [Resolved] BuddyBlog Checkboxes Aren’t Visible #45839
Hi Chris,
Thank you for the question.In case of checkbox, radio and select box, you need to specify the label and values in the corresponding boxes. You haven’t specified that.
Please follow these steps:-
1. Delete the old checkbox field
2. Select the checkbox from the deopdown field types
3. Since we have only one option here, we don’t need comma separated value
In the Options field, Please put yes
In the Options Lables field, Please put YesThe values ‘yes’ and ‘Yes’ are without quotes.
and save.
4. In case you need multiple options in future, Please put the values separated by comma in Options( e.g. one, 2, three etc)
and corresponding labels ( e.g One, Two, Three items etc) in the Options Label field.Please give it a try and let me know if it works or not?
Regards
Brajesh - Brajesh Singh on July 26, 2022 at 9:14 pm in reply to: [Resolved] How to Add Name on Registration #45838
H Lisa,
Can you please grant me temporary admin access on this site? The Username/Fullname fields are default fields and they have to be present out of the box unless something is removing them.As far as I see from your screenshot, your first name’s visibility was updated to adminonly by some plugin or code(BuddyPress does not provide you the option for that). Any chance that you used BuddyPress Xprofile Full Name sync or something similar in the past.
Regards
Brajesh