• eatlikej

    (@eatlikej)


    Hello, I just recently installed Hueman and I quite like it, How ever I noticed since I changed my theme to Hueman, I can no longer see 150×150 size thumnail photo anymore. Its thumnail size is 420×280 and original size are only two size I could chose. I can not choose small, medium, large size…..etc…..

    How Can I fix this problem?

    I fake the size by changing the numbers to 150 in text mode directly, which worked sort of in a post, however I could not do that in a post with CM tooltip dictionary. It showed 150×150 size pic in actual post but when it does hover over a word, it shows no picture. My faking tech failed, I prefer not to do this “changing number” in every inserted image anyway.

    SO I would like to properly fix it. Please could you help me out? Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • bdbrown

    (@bdbrown)

    Hi eatlikej. The default image sizes of WordPress are “thumbnail”, “medium”, “large” and “full” (the size of the image you uploaded). These image sizes can be configured in the WordPress Administration Media panel under Settings > Media. This is how you can use these default sizes with the_post_thumbnail():

    the_post_thumbnail( ‘thumbnail’ ); // Thumbnail (default 150px x 150px max)
    the_post_thumbnail( ‘medium’ ); // Medium resolution (default 300px x 300px max)
    the_post_thumbnail( ‘large’ ); // Large resolution (default 640px x 640px max)
    the_post_thumbnail( ‘full’ ); // Full resolution (original size uploaded)

    The Hueman theme creates the following thumbnail sizes when an image is uploaded:

    add_image_size( ‘thumb-small’, 160, 160, true );
    add_image_size( ‘thumb-standard’, 320, 320, true );
    add_image_size( ‘thumb-medium’, 520, 245, true );
    add_image_size( ‘thumb-large’, 720, 340, true );

    The first thing I would try is to install and run the Regenerate Thumbnails plugin. That should recreate the above size thumbnails for each image currently in your Media Library.

    Thread Starter eatlikej

    (@eatlikej)

    Thank you for reply. Actually I did install regenerate Thumbnails plugin and after that image seizes went funny. Is this something to do as I have EWWW Image Optimizer installed already?

    I found something called Media under “setting” now showed up and it seems to be able to change thumbnail size. Is this the future of regenerate Thumbnails?

    So I uploaded an image again, this time thumbnail was 160×160 as I set, but again, when it was on tooltip mode, it did not show up.

    So what do you suggest ? Is it absolute necessary to have regenerate Thumbnails?? or Hueman functions without it? I love Hueman theme so I like to work things out.

    Thank you very much!

    bdbrown

    (@bdbrown)

    Is this something to do as I have EWWW Image Optimizer installed already?

    The two plugins serve different functions. One optimizes the images, the other regenerates the images based on the image sizes registered in WP and the theme.

    Is this the future of regenerate Thumbnails?

    No, this is a WP feature, not related to the plugin.

    Is it absolute necessary to have regenerate Thumbnails??

    No, you don’t need the plugin in order to use the theme.

    Another option you could try is Simple Image Sizes.

    Thread Starter eatlikej

    (@eatlikej)

    Thank you for response 🙂

    Actually I run regenarate again now I have four sizes for example

    Thumbnails 160×160 (cause I set it)
    Medium632x474
    Large720x539
    FUll 3046×2263

    umm….is it right? This seems to be following nither default or Hueman rules of uploading.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘There are only two picture size loaded’ is closed to new replies.