I have the same problem.
It uses the 80×80 image size and I want to use a bigger one.
I have changed the thumbnail size of my site (Settings / Media) to 200×200 pixels and rebuilt my images, but it would be nice if you could chose which imagesize to show like Rafael is suggesting.
Thanx in advance
I am still in need of this, can anyone inform me more about it? Or do I have to use another plugin for this functionality or?
I just had to bite the bullet and regen thumbnails with a larger size. It grabs the thumb for featured image.
Hi, I had the same issue in V1.1.2. But you may change it in the code, ideed.
But be aware that this hard-coded change might get lost with a new update!
Open “staff-directory/classes/staff-directory-shortcode.php” and search the shortcode-function (probably line 81)
static function photo_url_shortcode(){
once there, add the ‘full’ param to the wp_get_attachment_image_src-function:
$attachment_array = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full' );
this worked for me. : )
@ingonieur
This is perfect and well it doesn’t look like the plugin gets that many updates, so I’m quite happy we finally got a way to properly showcase the full formats!
Thanks a bunch for pointing this out!