Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2208932
Images
Closed

Comments

  • berams started the conversation

    It appears that for every uploaded image theme creates 14 versions in different sizes. How can I customize that because I don't need all of them.

  •  2,699
    PenciDesign replied

    Hi,

    By default WordPress auto create some image sizes, you can check it via Dashboard > Settings > Media.

    For image sizes from the theme, you can check it via Appearance > Theme Editor > click on "functions.php" file on the right side > and on line 91, you will see this code:

    add_image_size( 'penci-full-thumb', 1170, 99999, false );
    add_image_size( 'penci-slider-thumb', 1170, 663, true );
    add_image_size( 'penci-magazine-slider', 780, 516, true );
    add_image_size( 'penci-slider-full-thumb', 1920, 800, true );
    add_image_size( 'penci-single-full', 1920, 0, false );
    add_image_size( 'penci-thumb', 585, 390, true );
    add_image_size( 'penci-masonry-thumb', 585, 99999, false );
    add_image_size( 'penci-thumb-square', 585, 585, true );
    add_image_size( 'penci-thumb-vertical', 480, 650, true );
    add_image_size( 'penci-thumb-small', 263, 175, true );
    

    You can remove any line in all lines above to remove the image size you don't want to create in future uploads.


    Best Regards,

    PenciDesign