BuddyBoss Home – Web Support Forums Solutions Social Portfolio Image Sizes In Project

Viewing 6 posts - 1 through 6 (of 6 total)
  • Question

    #55164
    @attrell

    It appears images uploaded to a project are set at max 1600. There is no option to change this that I can see. I would like a smaller size. Is there an option anywhere this can be changed.

    Thank you, this is a really nice product y’all created.

    Answers

    #55195
    @vapvarun

    Hi @attrell, Thanks for your feedback
    We have not set for image size limit, you can upload high resolution images easily
    may be your php upload limit will be default 2mb that why you are not able to upload bigger images , please check your php upload limit once
    Regards
    Varun Dubey

    #55212
    @attrell

    Thanks Varun,

    I meant I wanted to have the displayed image smaller. It currently resizes my large images to 1600, I wanted to display even smaller at 800.

    Is there anyway to change max image display to 800px rather than 1600px.

    Thank you,

    Chris

    #55250
    @vapvarun

    Hi @attrell
    You can add following function to child theme

    
    function sp_child_theme_setup() {
        add_image_size( 'project_image', 800, 9999, false );
    }
    add_action( 'after_setup_theme', 'sp_child_theme_setup', 11 );
    

    Regards
    Varun Dubey

    #55261
    @attrell

    Wow thank you! WOrked great!

    #55366
    @vapvarun

    🙂 Great
    Please create a new topic for any further queries, i will close this one.
    Regards

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘Image Sizes In Project’ is closed to new replies.