• I am experiencing a problem when setting a featured image. The past few days when setting a new featured image that has been added to my media library, the additional image sizes are not being generated. Nothing at all has changed with my wordpress version or my theme. Previously, five different image sizes would be created whenever I set a new featured image. Sometimes it works and only creates some of the image sizes, sometimes it does not create any of the image sizes. Is anyone experiencing a similar issue?
    Can anyone tell me exactly what php page I can find the image size settings on so I can verify what sizes are supposed to be created by the theme? my theme functions (fuctions.php) has always just used the bloe code. I don’t see any reference to it adding any additional image sizes on that page, but it has always created the following image sizes in my cache folder any time I add a new image to the library. 100×45 350×250 400×300 500×300 575×175. Now it no longer creates the 350×250 which is the one that I need most!

    * This theme uses a custom image size for featured images, displayed on
    * “standard” posts and pages.
    */
    add_theme_support( ‘post-thumbnails’ );
    set_post_thumbnail_size( 604, 270, true );

    // This theme uses its own gallery styles.
    add_filter( ‘use_default_gallery_style’, ‘__return_false’ );
    }
    add_action( ‘after_setup_theme’, ‘twentythirteen_setup’ );

    Any insight you can provide would be most appreciated

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    How are you hosting your site? This might be due to either some missing PHP libraries or a lack of disk space.

    Thread Starter rbfkak

    (@rbfkak)

    So, here’s a follow up. For some reason when the images are created now, instead of it creating a file names “filename-350×250.png” it is taking the original 350×250 image size and naming it “filename-400×300.png” even though the actual image size is still 350×250.
    Odd, not sure why it would all of a sudden be naming the file incorrectly when I have changed nothing.
    I can rename that file on the remote server to the proper size and use it with no problems, but it is boggling my mind as to why the file is not being named the correct size.

    • This reply was modified 7 years, 1 month ago by rbfkak.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Additional image sizes not generating’ is closed to new replies.