• Resolved melissalarkin91

    (@melissalarkin91)


    Hello,

    I’ve noticed a few people have asked this and there have been no replies so I’m guessing this is not currently supported?

    Basically just want the thumbnail to also link through to the event ?? the h4 link is great and works well but it’ll be helpful (particularly with tablet users) if the thumbnail could just be tapped on.

    Looking forward to hearing back about this ??

    Kind regards,

    Melissa

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter melissalarkin91

    (@melissalarkin91)

    Ah, just removed the set width and height and now a link has appeared, how odd! Haha, problem solved.

    Plugin Author Brian Hogg

    (@brianhogg)

    Yes, I agree its a strange issue! Since this is how the plugin has worked I’m concerned about adding the link to the thumbnail and messing up formatting for people, but might make sense to add it in to avoid confusion.

    For those seeing this, just avoid adding thumbwidth and thumbheight options to the shortcode. The ecs_event_thumbnail_size filter can be used to set the thumbnail size instead, ie.

    function ecs_set_thumbnail_size( $size ) {
        // set to thumbnail instead of medium
        return 'thumbnail';
    }
    add_filter( 'ecs_event_thumbnail_size', 'ecs_set_thumbnail_size' );
    

    And of course you could add styling with CSS to set the styling as well.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Thumbnail – Clickable Link’ is closed to new replies.