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: 25384
    Brajesh Singh on in reply to: Community builder costumizer #10630

    Hi,
    Thank you.
    1. For widgets etc, It will take the BuddyPress translation.
    2. For theme generated content( various messages etc), It will need translation.
    3. There are total of 968 strings of which around 200-300 strings are for front end and rest is for admin settings(which you can avoid translating)

    Also, we do plan to release a major version in next 3-4 weeks and things will change drastically then. We will be separating the admin translations from front end and the typography/appearance will change hugely.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Profile Visibility and Core Widgets #10625

    Hi Graham,
    Thank you.
    I am very sorry to hear that you have to redo your tutorials. I wanted to assist you with the simple privacy plugin but sad to see that did not work.

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Profile Visibility and Core Widgets #10622

    Hi Graham,
    The plugin will filter out any profile which is hidden on directory from the widget list etc. It does not consider a private profile as hidden(We have settings for hiding from directory). The private profiles are considered inaccessible but not hidden.
    Please use the directory settings for hiding.

    Can you please check that and let me know if that works or not?

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Community builder costumizer #10621

    Hi @branike,
    The theme supports translation. Translation files are included with the theme and you can translate it as any normal theme/plugin.

    Please do note that the theme does not support RTL.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Dollor,
    Please put this in your bp-custom.php and you should be good to go.

    
    
    /**
     * Fix cover upload for multisite, multiblog mode.
     * @param array $val not important to us.
     *
     * @return array
     */
    function buddydev_cover_upload_dir_fix( $val ) {
    
    	if ( ! is_main_site() && BP_ENABLE_MULTIBLOG ) {
    
    		switch_to_blog( SITE_ID_CURRENT_SITE );
    		$upload = wp_upload_dir();
    		restore_current_blog();
    		buddypress()->upload_dir = $upload;
    	}
    
    	return $val;
    }
    add_filter( 'bp_attachments_pre_cover_image_ajax_upload', 'buddydev_cover_upload_dir_fix' );
    
    

    It will only work for new cover uploads.

    Please do let me know if it works for you or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Error for Buddypress Member Types Pro #10616

    Hi Bethany,
    My apologies for the issue.

    Can you please provide me a little more details:-

    1. Is it a multisite install?
    2. If yes, Is the member type plugin network active?
    3. Did you upgrade from the member type generator?
    4. Have you registered any member type via code?

    Please let me know and I will assist you promptly.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Does the BuddyDev Dashboard update all plugins? #10610

    Hi,
    Yes, the dashboard handles all plugins(not 60, think of 100+ ).

    About the load speed, are you referring to BuddyDev dashboard or the individual plugin?

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: BuddyPress Activity #10597

    Hi Hanifa,
    My apologies.
    we won’t be able to help with it and will suggest asking to your theme developers about it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Fullscreen Video Not Working #10596

    Hi Joel,
    Were you able to fix it?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Ajax Registration Stopped Working #10594

    Marking it as resolved as per email.

    For others looking at this thread, The issue was admin-ajax.php was blocked by the Wordfence.