Generate Custom Image Sizes - settings in Bricks

Does anyone know where I can find any documentation for this feature, in the Setting, General, Miscellaneous section? I realize what it might, or “should” do, but I cannot find any docs explaining this in detail, and I have a client bugging me about image sizes, as they are having a gallery issue, and I want to make sure the problem they are having is not a Bricks bug. Any docs on Bricks default image and thumbnail sizes either?

Hi @bricksandmortar ,

sorry for the late reply. These are the image sizes that will be added, if the option is turned on:

// Theme-specific image sizes
if ( isset( Database::$global_settings[‘customImageSizes’] ) ) {
add_image_size( ‘bricks_large_16x9’, 1200, 675, true );
add_image_size( ‘bricks_large’, 1200, 9999 );
add_image_size( ‘bricks_large_square’, 1200, 1200, true );
add_image_size( ‘bricks_medium’, 600, 9999 );
add_image_size( ‘bricks_medium_square’, 600, 600, true );
}

What is the issue with the gallery?`

Best regards,
timmse

1 Like