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: 25275
    Brajesh Singh on in reply to: Problem with upload images #7755

    Hi,
    Community Builder needs three featured image sizes for the following purpose:-
    1. Thumbnail for grid/masonry layouts
    2. featured-mid for the featured image size used with 2 column layout
    3. featured-large:- for the featured image used with the single column layout

    The problem you are seeing has nothing to do with the Community Builder, It is the way WordPress works with featured image.

    I will suggets looking at plugins which delete the original images and keep the media cleaner for more efficient usage.

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: Featured Image #7753

    Hi Graham,
    Thank you for the patience.

    The issue is fixed now. Here is the recommended way to make it work.

    1. Please upgrade to 1.0.9
    2. Please install the Simple Image size plugin and visit settings->Media, there you will see the image sizes listed and the control for cropping/resizing

    – For post-thumbnail and featured-mid size, please select “Center center” in the cropping box. I will also suggest to use square images for better scaling. Please update it.
    Link:- https://wordpress.org/plugins/simple-image-sizes/

    3. To make older images work, please install regenerate Post thumbnails plugin(https://wordpress.org/plugins/regenerate-thumbnails/)

    4. Please Visit Tools-> Regen. Thumbnails and click regenerate. once you are done, you may disable this plugin.

    Please visit the home page and let me know if it works or not?

    The simple image size plugin gives you complete control over the image size, so you can experiment with it for more suitable size. For the images that you have used(square), using a square size worked perfectly for me.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: [Resolved] Support for Captcha #7752

    Hi Graham,
    Thank you for allowing me to complete it. I have put a fix where the recaptcha on screensize lower than 360px will work fine too.

    Please check the update.

    Here is a list of changes
    https://buddydev.com/docs/guides/community-builder/releases/buddypress-community-builder-theme-version-1-0-9-release/

    BuddyPress 2.8.2 is required for this release and It is strongly suggested to upgrade to 2.8.2 as it is a security release.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275

    Hi Phillip,
    I just tested the code.

    I used this section from the above code

    
    
    //step 1: Add a new Tab
    function buddydev_setup_new_xprofile_tab() {
    
    	$slug = bp_get_profile_slug();
    
    	bp_core_new_subnav_item( array(
    		'name'          => 'About',//label
    		'slug'          => 'about',//slug
    		'parent_slug'   => $slug,
    		'position'      => 12,
    		'parent_url'    => trailingslashit( bp_loggedin_user_domain() . $slug )  ,
    		'screen_function' => 'buddydev_screen_profile_data'
    	));
    }
    
    add_action( 'bp_setup_nav', 'buddydev_setup_new_xprofile_tab' );
    
    //Step 2: Load the plugins template file
    function buddydev_screen_profile_data() {
    	//filter loop
    	add_filter( 'bp_after_has_profile_parse_args', 'buddydev_filter_args_for_profile_group' );
    	//load loop
    	add_action( 'bp_template_content', 'buddydev_show_profile_group_data');
    
    	bp_core_load_template( 'members/single/plugins');
    }
    
    function buddydev_modifyy_user_profile_tab() {
    
    	bp_core_new_nav_item( array(
    		'name'	=> 'Critical Review',
    		'slug'	=> 'criticalreview',
    		'screen_function'	=> 'buddydev_screen_profile_data',
    		'default_subnav_slug' => 'criticalreview-sub',
    		'show_for_displayed_user' => true,
    ));
    
    }
    add_action( 'bp_setup_nav', 'buddydev_modifyy_user_profile_tab', 8 );
    
    function buddydev_filter_args_for_profile_group( $args ) {
    	///CHANGE IT
    	$args['profile_group_id']  = 2; //Your Profile Group ID Here
    
    	return $args;
    }
    //Load the loop
    function buddydev_show_profile_group_data() {
    
    	bp_get_template_part( 'members/single/profile/profile-loop' );
    }
    

    It is working fine for on BuddyPress 2.8 for the logged ion user’s profile as well as other user’s profile.

    I am sorry but I am not sure of the problem.

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: [Resolved] Delete image redirect #7726

    Closing & Marking resolved due to lack of activities.

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: [Resolved] Support for Captcha #7724

    Hi Graham,
    The BuddyPress release is available now. I am pushing Community Builder in next 2-3 hours.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: [Resolved] Buddy Blog and Google Maps #7722

    Hi Ben,
    You are welcome.

    I am glad I could help. There is no need to pay anything . i appreciate you being a friend and a valuable member here.

    Have a great day!

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: Ajax registration not working on mobile! #7721

    Hi Jualfredo,
    I am sorry for the inconvenience.
    Can you please point me to your site. i can quickly check and let you know.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: [Resolved] Fullwidth header and user menu #7669

    If you are trying to put anything before the header, it can be done via code.
    Please do note that it will need changes for css too.

    Are you comfortable with PHP code?

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: BuddyPress Custom Background For User Profile #7668

    Hi Dandy,
    I am sorry, we haven’t yet been able to work on that. We will try and let you know asap we do it.

    Thank you
    Brajesh