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

    Hi Dollor,
    Thank you.

    The above fix fixes uploads.
    In case of group specialy, there needs a fix for fetching too.

    Please keep the above code and add this too.

    
    
    // Another hack.
    function buddydev_cover_upload_dir_fix_pre_get( $data = null ) {
    	buddydev_cover_upload_dir_fix(null );
    }
    add_filter( 'bp_attachments_pre_get_attachment', 'buddydev_cover_upload_dir_fix_pre_get' );
    
    

    That will do it fro you.

    Hope this helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25282

    Hi Monsur,
    Are you referring to the cards on the plugin page? It is coming for the theme. We used our Community Builder theme while preparing the demo. The setting used was “Theme Default”.

    Depending on your theme, It may vary(It will look as is provided by the current active theme).

    You can see an example here
    http://demos.buddydev.com/community-builder/members/

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

    Hi Graham,
    Thank you.

    PS:- I will post an update to the Recent visitors tonight again with compatibility testing with Profile visibility manager.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25282
    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: 25282
    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: 25282
    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: 25282
    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: 25282

    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: 25282
    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: 25282
    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?