• Resolved radgh

    (@radgh)


    I have these sizes available for the image I uploaded: thumbnail, medium, large, thumbnail-cropped, huge, rssfeed-landscape

    However I can only modify thumbnail and rssfeed-landscape with this plugin:

    https://dl.dropboxusercontent.com/s/l7afk86offse7hl/2015-12-01_10-24-56.jpg?dl=0

    Three of these sizes: thumbnail-cropped, huge, rssfeed-landscape; are being added by my custom built theme using “add_image_size()” during the “after_setup_theme” action hook (default priority, 10).

    Is there a way to specify what image sizes should be used? I would actually like it to only use my custom image sizes, not the WP default images (thumbnail, medium, large).

    Great plugin otherwise. Hopefully I can get this fixed.

    https://www.ads-software.com/plugins/manual-image-crop/

Viewing 1 replies (of 1 total)
  • Thread Starter radgh

    (@radgh)

    Oh great. I quickly realized from my settings, this plugin only works with image sizes that have cropping enabled.

    // Default image sizes
    'thumbnail' => array( 360, 360, false ),
    'medium' => array( 720, 720, false ),
    'large' => array( 1080, 1080, false ),
    
    // Custom image sizes
    'thumbnail-cropped' => array( 360, 360, true ),
    'huge' => array( 1440, 1440, false ),
    'rssfeed-landscape' => array( 560, 280, true ),

    Is there a way to allow non-cropped photos to be manually cropped? The jquery resizing plugin that is used looks like it would allow a custom aspect ratio.

Viewing 1 replies (of 1 total)
  • The topic ‘Works fine, but only lists 2 out of 7 sizes for cropping.’ is closed to new replies.