Removing additional image sizes (thumbnails) in PRO Theme

Hello,

Here’s a bit of context:
My website: https://silhouettes.ro/slh2/ is a photography website and we upload thousand of images for displaying them. I recently realized we don’t use the featured image anywhere on the website because we use the essential grid a lot (thumbnail generated from original size), we removed it from displaying in a single post and we don’t have a blog category. Therefore we have no need for the additional thumbnails generated by the theme and we could really use the extra space for our hosting.

I’ve tried adding the code below in my Child’s Theme functions.php but the solution is for the X theme but PRO has a different configuration :slight_smile:

Blockquote
// Remove X Image Sizes
// =============================================================================
add_action(‘wp’, ‘remove_x_image_sizes’);
function remove_x_image_sizes() {
remove_image_size(‘post-thumbnails’);
remove_image_size(‘entry-cropped’);
remove_image_size(‘entry-fullwidth’);
remove_image_size(‘entry-cropped-fullwidth’);
}
// =============================================================================

Could you please help me with the necessary code to remove the additional file sizes and leave only the original size? Or maybe leave just 1 additional size? (entry-cropped-fullwidth)

Much appreciated!
Sergiu

Hello @sergiuirimescu,

Thanks for writing to us.

The feature that you want would require custom development. I would suggest you contact a developer who can assist you with your concern. Please note that we don’t provide custom development support it os out of the support.

Alternatively, in case if you have an idea about coding you please have a look at the function reference to get all the image size is defined. https://developer.wordpress.org/reference/functions/get_intermediate_image_sizes/

Please have a look at this article to remove the image size function reference.

Hope it helps
Thanks for understanding

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.