Quick tutorial: How to link listing thumbnails to the listing.
While going through my site I kept on trying to view the listings by clicking on the thumbnails only to realise that they aren't linked to the listings and that you need to click on the title instead.
I imagine most visitors to be like me and expect to be able to view a listing by clicking on the thumbnail, so here is how to do it;
Replace line 3 of the content-listing.php (<?php the_listing_thumbnail(); ?>) with this;
Code:
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" ><?php the_listing_thumbnail(); ?></a>
That's all.