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

    No,
    Only 3 is needed but WordPress will create all of them anyway. It is not the theme which creates/manages all. It is an issue in WordPress and has been known for long.

    You can find many plugins which deal with removing extra images.

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Dandy,
    I am sorry but I don’t see any solution available that allows doing it for individual user. There are plugins available that target users based on roles but nothing like this.

    Is this notice generic or should it be specific to user user?

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Toghrul,
    Thank you for posting.

    Please use any of the posts draft notification plugin for WordPress. they should work out of the box with BuddyBlog.

    Please do let me know if the don’t work.

    Regards
    Brajesh

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

    I am sorry but the theme does not provide it out of the box. For specific pages, you may do it using Maximus Builder.

    In PHP, There is a hook ‘cb_before_header’ which can be used to generate the desired markup in the header and the using css to do it.

    Regards
    Brajesh

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

    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: 25468
    Brajesh Singh on in reply to: [Resolved] Delete image redirect #7726

    Closing & Marking resolved due to lack of activities.

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