Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25276

    Hi Yoza,
    Welcome to BuddyDev.
    I will suggest looking at this plugin

    https://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

  • Keymaster
    (BuddyDev Team)
    Posts: 25276
    Brajesh Singh on 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.

  • Keymaster
    (BuddyDev Team)
    Posts: 25276
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25276
    Brajesh Singh on in reply to: Buddy Blog Features #9568

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25276

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25276

    Hi Jay,
    Please upgrade to 1.0.1

    The 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25276

    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
  • Keymaster
    (BuddyDev Team)
    Posts: 25276
    Brajesh Singh on in reply to: [Resolved] BP Clear Notifications #9560

    Most probably the selector is not working. Safari 10.1 and above should work.
    https://caniuse.com/#search=%3Alast-child

    I 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.

  • Keymaster
    (BuddyDev Team)
    Posts: 25276

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25276
    Brajesh Singh on in reply to: [Resolved] BP Clear Notifications #9555

    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?