Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter sixtyseven

    (@sixtyseven)

    Here are two more screenshots from my actual website:

    See the settings page: I added the following code to ManualImageCropSettingsPage.php to show the registered sizes below the form

    <h4>Registered Images Sizes</h4>
    <?php
    echo '<pre>';
    global $_wp_additional_image_sizes;
    print_r( $_wp_additional_image_sizes );
    echo '</pre>';
    ?>

    Screenshot one

    Here you can see that the cropping is not working as ewxpeted either, It only shows the standard WP 150 x 150 Thumbnail.
    Screenshot two

    I think that the idea of your plugin is fantastic, a real time saver when it comes to featured images or galleries. But I could not get it to work properly.

    Plugin Author Tomasz Sita

    (@tomaszsita)

    Hi sixtyseven,

    plugin supports only ‘hard crop’ image sizes.

    In your case you would need to register the size this way:
    add_image_size( ‘slider’, 680, 350, true );

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom image sizes are not showing’ is closed to new replies.