Forums Forums Search & Filter Pro grid results / thumbnails

Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Trevor
    #191518

    Please see this section of the code:

    if ( has_post_thumbnail() ) {
      the_post_thumbnail("small", array('class' => 'gp-post-image gp-large-image'));
      the_post_thumbnail("thumb", array('class' => 'gp-post-image gp-mobile-image'));
    }

    You appear to be outputting both a small/large and thumbnail image? This is not our standard code, so I guess it comes from your theme. What happens if you load only the second, thumb, imaage?

    Anonymous
    #191524

    Ok it’s done :

    <?php 
    				if ( has_post_thumbnail() ) {
    					the_post_thumbnail("thumb", array('class' => 'gp-post-image gp-mobile-image'));
    				}
    			?>

    But now the images do not load anymore :
    https://www.filmspourenfants.net/

    Trevor
    #191528

    Remove the class ‘gp-mobile-image’ from the code.

    Anonymous
    #191534

    Ok great, it works, my images appear, and its light, so loading is faster.
    The shape of the images is square. Is it possible to increase the height?

    Trevor
    #191536

    They are using the media sizes set in WordPress, and thumbnails are normally square. You would need to add a new media size or re-define an existing one, then change the code to use that size, then use a plugin to re-make all the images in that new size.

    Anonymous
    #191542

    But I have the impression that each of my images are already resized in several sizes.
    Look at my FTP:

    Thanks for your help.

    Trevor
    #191546

    All you need, then, is to know the ‘name’ of each size to replace the word ‘thumb’ in the code. I am not sure where you will find this, but it will be somewhere in WordPress or the plugin that makes all these sizes.

    Anonymous
    #191805

    Hi Trevor, thank you very much for your help.
    I have finally changed the thumbnail sizes in the WordPress settings.

    And now I have the perfect size on my homepage:
    https://www.filmspourenfants.net/

    Good day and good luck.
    Thanks again.

Viewing 8 posts - 1 through 8 (of 8 total)