• Resolved quteo

    (@quteo)


    Hi acosmin,

    need your help with the follow:

    A lot of users telling me they trying to enter a post while clicking on the thumbnail on main page. After they understood that its not clickable they clciking on the title to enter detailed post.

    Is there a way to make the thumbnails also clickable to enter the individual post on main pages?

    Also if is possible it would be better for usability not only make the title and the thumbnail clickable, but also the whole preview text of the post, so that the whole square including tilte, thumbnail and preview text is a big “show more” button?

    I appreciate your help.

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author acosmin

    (@acosmin)

    Open ../post-templates/content.php find:

    if ( has_post_thumbnail() ) :
    					the_post_thumbnail( 'ac-post-thumbnail' );

    replace with:

    if ( has_post_thumbnail() ) :
    		echo '<a href="' . esc_url( get_permalink() ) . '">';
    		the_post_thumbnail( 'ac-post-thumbnail' );
    		echo '</a>';

    Thread Starter quteo

    (@quteo)

    Thank you so much!!!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘clickable thumbnails in post preview’ is closed to new replies.