• Resolved stylelib

    (@stylelib)


    Hello. Your plugin creates a bunch of thumbnails 120×120. I don’t need and I can’t turn it off. Please add this feature. I use my template where the path to the image is registered and I do not need thumbnails.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author YARPP

    (@jeffparker)

    Hi @stylelib this is on our roadmap and should be coming soon.

    Thread Starter stylelib

    (@stylelib)

    /wp-admin/options-general.php?page=yarpp Setings

    “Generate missing thumbnail sizes: ” – unchecked but still thumbnails are created

    delete all img (backup)
    find /...path to your site.../wp-content/uploads -name "*-120x120.*" | xargs rm

    Plugin Author YARPP

    (@jeffparker)

    @stylelib

    Thank you for being patient with this. We listened to your feedback and in the latest release of YARPP, there is a new filter to avoid creating YARPP thumbnail sizes:

    
    add_filter( 'yarpp_add_image_size', '__return_false' );
    
    Thread Starter stylelib

    (@stylelib)

    v5.26.0
    Generate missing thumbnail sizes: unchecked

    Thumbnails are still being created. Why did you add them at all. Let the WordPress create thumbnails itself if this feature is enabled.

    Plugin Author YARPP

    (@jeffparker)

    @stylelib in your theme’s functions.php file, try adding the following line of code to disable the generation of yarpp-thumbnail:

    
    add_filter( 'yarpp_add_image_size', '__return_false' );
    
    Thread Starter stylelib

    (@stylelib)

    Thanks it works!

    Plugin Author YARPP

    (@jeffparker)

    You’re very welcome.

    We try to set defaults that are appropriate for most sites. Image generation is somewhat complicated because of the way WP handles it. For high traffic sites, we actually do not recommend enabling Generate missing thumbnail sizes as it generates the image at run time (if missing). Generating missing images in batch in the background or at the time of creation is much better for performance — which we mention in the tooltip next to the option in the admin UI.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘plugin creates a bunch of thumbnails 120×120’ is closed to new replies.