Viewing 4 replies - 1 through 4 (of 4 total)
  • Just out of curiosity, how did you get the plugin to bring in a different size of image? I can see that it’s calling in the stupid tiny thumbnails and making them even smaller by making them 100x100px but I can’t figure out how to change which size image is being called in and used for the thumbnail.

    And while I’m thinking of it, did you change the plugin code it’s self or is there a way to make changes that don’t get overwritten with plugin updates (such as how child themes work for templates).

    Hi

    I faced the same issue, in quicksand_functions.php file

    in the line 232 (i think), instead of the : <?php echo get_the_post_thumbnail($item->ID,array(100,100)); ?>
    put this code :
    <img src=”<?php echo wp_get_attachment_url( get_post_thumbnail_id($item->ID) ); ?>” alt=”<?php echo get_permalink($item->ID); ?>”/>

    this way you will get the full size image of each post.

    Plugin Author developingtheweb

    (@developingtheweb)

    New version has an image size option, there is still a default size in the code but this gets overwritten when the new options are completed. You can also override with css classes.

    Thread Starter Keryn

    (@b-summers)

    That’s awesome @developingtheweb thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Feature Request: Change Image Size’ is closed to new replies.