• Resolved alexmcmeekin2017

    (@alexmcmeekin2017)


    Hi. Thanks for a very nice plugin. I have one problem and would like to solve it. The plugin generates a lot of thumbnails: I only need a 150×150 thumbnail. How can I stop the generation of thumbnails with other sizes?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Muhammad Arslan

    (@wparslan)

    Hey @alexmcmeekin2017

    This is not the default behaviour of Related Posts Thumbnails.

    We are not adding/generating the thumbnail sizes.

    There might be some problem making element in your environment.

    Can you kindly show us which sizes are being created and provide a bit more details so we can guide you in the right direction.

    Thank you.

    Thread Starter alexmcmeekin2017

    (@alexmcmeekin2017)

    Thank you for the fast response. I accepted the fact that in fact I don’t need thumbnails on the site at all. Understood with the generation of various miniatures. You have a great plugin that shows relevant results and does not slow down the site. Can I use a simple list without showing thumbnails? I don't know how to achieve this. If it is possible to do so please tell me how to do it.
    ----
    To disable the generation of all thumbnails, I added the following code to the function.php of the theme:

    /*Disable thumbnails generation in WordPress/ function vel_remove_all_image_size($size) {
    unset($size['thumbnail']);
    unset($size['medium']);
    unset($size['medium_large']);
    unset($size['large']);
    unset($size['1536x1536']);
    unset($size['2048x2048']);
    unset($size['thumb-small']);
    unset($size['thumb-standard']);
    unset($size['thumb-medium']);
    unset($size['thumb-large']);
    unset($size['thumb-xlarge']);
    unset($size['thumb-xxlarge']);
    }
    add_filter('intermediate_image_sizes_advanced', 'vel_remove_all_image');
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How can I stop the generation of thumbnails’ is closed to new replies.