Replies
- Brajesh Singh on June 26, 2017 at 4:53 am in reply to: How to make dynamic form/list extend to user profile? #9585
Hi Yoza,
Welcome to BuddyDev.
I will suggest looking at this pluginhttps://buddydev.com/plugins/conditional-profile-fields-for-buddypress/
You can create the title as a selectbox or radio and then conditionally allow other fields.
Hope that helps.
Brajesh
- Brajesh Singh on June 24, 2017 at 1:59 pm in reply to: BuddyPress Activity Shortcode : Bug/Issue #9571
Hi Jerome,
It is working fine for me.Is there any chance that you have hidden the Activity Dropdown bx that says “My Profile and the groups list”
Even after using the form, a user needs to select the private group. If you have hidden it, It will be posted on user profile instead of group.
- Brajesh Singh on June 24, 2017 at 11:55 am in reply to: BuddyPress Activity Shortcode : Bug/Issue #9569
Hi Jerome,
I am sorry I Missed this topic. I will update you today.
Thank you
Brajesh Hi Gurpreet,
Welcome to BuddyDev.
I am sorry but BuddyBlog does not support the moderation workflow yet.You may want to implement it using a custom post meta and using some custom codes but It will be significant. I will be happy to guide if are interested in developing it.
Thank you
Brajesh- Brajesh Singh on June 24, 2017 at 11:51 am in reply to: Non-static method ::get_limit() should not be called statically #9567
Sorry, I could not test them earlier and the other developers are on leave for the week. Please allow me to check and update you today.
Thank you
brajesh - Brajesh Singh on June 24, 2017 at 11:50 am in reply to: [Resolved] Automatically join groups on registration #9566
Hi Jay,
Please upgrade to 1.0.1The new release allows you to setup groups that the user will join automatically on member type change.
It also contains support for Paid Membership Pro levels in case that helps.
Please do let me know if it works for you or not?
Thank you
Brajesh - Brajesh Singh on June 24, 2017 at 11:47 am in reply to: [Resolved] X-Profile Fields in BuddyPress Multi Network #9565
Hi Jason,
Welcome to BuddyDev.Please put this code in your bp-custom.php
/** * Filter profile tables to use main site's tables. * * @param $tables * * @return array */ function buddydev_global_profile_tables( $tables ) { global $wpdb; $prefix = $wpdb->base_prefix; // overwrite names $tables = array( 'table_name_data' => $prefix . 'bp_xprofile_data', 'table_name_groups' => $prefix . 'bp_xprofile_groups', 'table_name_fields' => $prefix . 'bp_xprofile_fields', 'table_name_meta' => $prefix . 'bp_xprofile_meta', ); return $tables; } add_filter( 'bp_xprofile_global_tables', 'buddydev_global_profile_tables'); /** * Filter meta table to use the main site's tables * * @param array $tables * * @return array */ function buddydev_gloabl_profile_meta_tables( $tables ) { global $wpdb; $prefix = $wpdb->base_prefix; $tables = array( 'xprofile_group' => $prefix . 'bp_xprofile_meta', 'xprofile_field' => $prefix . 'bp_xprofile_meta', 'xprofile_data' => $prefix . 'bp_xprofile_meta', ); return $tables; } add_filter( 'bp_xprofile_meta_tables', 'buddydev_gloabl_profile_meta_tables' );We are overriding the table names to use it from the main sites.
Hope that helps.
- This reply was modified 8 years, 7 months ago by
Brajesh Singh. Reason: fixing the name used in filter
- This reply was modified 8 years, 7 months ago by
Most probably the selector is not working. Safari 10.1 and above should work.
https://caniuse.com/#search=%3Alast-childI have used :last-child selector as there were no other way to select the link on Boss theme.
Which version of safari are you using? Also, Please make sure to clear the cache.
- Brajesh Singh on June 23, 2017 at 4:57 am in reply to: [Resolved] Automatically join groups on registration #9559
Thank you Jay.
I am glad you liked it.Great suggestion about adding to group based on member type. I will put an update by tomorrow with the Group selector option.
Please do let me know if yu have more suggestions.
Thank you.
Brajesh Hi Lyndon,
Please upgrade to 1.0.4
https://buddydev.com/plugins/buddypress-clear-notifications/I have added support for the Boss theme. To be honest, The Boss theme messes the notification menu and currently, I have added the support by selecting the last item in the menu. I sure hope they improve it in future and provide some other concrete way to select menu items.
Please let me know if it works for you or not?