Support » Plugin: WP Tiles » Change Default Tile Image Size

  • Resolved jamesdonegan

    (@jamesdonegan)


    Following the instructions here, I added the following to my site:

    add_filter('wp-tiles-image-size', 'change_tile_image_size');
    function change_tile_image_size( $image_size ) {
        return 'spotlight-thumbnail';
    }

    There is a custom size called “spotlight-thumbnail.”

    This is specifically so that we can manually crop the thumbs we’re using…. you can see it here: http://fwatest.org/spotlight/

    I can see in the Media library that my crop worked, but it’s not showing up correctly in the tiles.

    Please help. Thank you!

    https://wordpress.org/plugins/wp-tiles/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mike Martel

    (@mike_cowobo)

    Hi James,

    Where are you adding the filter? In your functions.php? Please make sure the function is called with a debugger, or by simply adding exit('Function called!'); in the filter just to check (bad habits die hard).

    Also, please compare the image URL from the media library at your size to the one in WP Tiles (eg. http://fwatest.org/content/uploads/2014/03/140312_nypl_leadership_31-200×200.jpg )

    Lastly, if you’re using any caching plugins, try purging the cache, just to be sure.

    Let me know what you find!

    Mike

    Thread Starter jamesdonegan

    (@jamesdonegan)

    It was a type-o! I must have looked at it a thousand times, and there was a missing “b” in “thumbnail.” Fixed it, and it worked like a charm. 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change Default Tile Image Size’ is closed to new replies.