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: 25383
    Brajesh Singh on in reply to: Photo size dimension issue with MediaPress #9587

    Hi,
    Thank you for becoming a premium member. I and my team sincerely appreciates it.

    I see the issue is coming as the container is smaller than the larger image size. It is a css conflict with the theme.

    If you can provide me a link to the page(Please use private option in the form) , I can quickly assist you with the css.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383

    Hi Andy,
    The reorder should have worked. We don’t do anything fancy(Its simple jquery UI sortable/droppable).
    I don’t own iphone, so I am unable to check the issue. If you or anyone can see the console and point me to the issue, I can easily fix it.

    For now, you can remove the reorder nav on the mobile devices

    
    /**
     * Remove the reorder nav on mobile devices
     */
    add_action( 'mpp_setup_globals', function () {
    	if( wp_is_mobile() ) {
    		mpp_remove_gallery_nav_item('reorder');
    	}
    }, 11 );
    
    

    Hope that helps.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25383

    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: 25383
    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: 25383
    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: 25383
    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: 25383

    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: 25383

    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: 25383

    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, 9 months ago by Brajesh Singh. Reason: fixing the name used in filter
  • Keymaster
    (BuddyDev Team)
    Posts: 25383
    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.