Clickable featured images?

eCommerce WordPress theme with various e-store features and WooCommerce support.
GK User
Thu Jul 18, 2013 11:59 am
Hello,

How can make clickable featured images on archive/lists?

Thanks
User avatar
Junior Boarder

GK User
Thu Jul 18, 2013 12:33 pm
Hi,

You have to edit StoreBox/layouts/content.post.featured.php file and replace (around line 46)
Code: Select all
<?php the_post_thumbnail(); ?>
with e.g. this
Code: Select all
<?php echo '<a href="' . get_permalink($post->ID) . '" >'; ?>
      <?php the_post_thumbnail(); ?>
<?php echo '</a>'; ?>

BTW This feature will be probably added in the next theme update.
User avatar
Moderator

GK User
Thu Jul 18, 2013 12:36 pm
World-class support!
Thanks again (and again, and again...).
User avatar
Junior Boarder


cron