Skip Navigation

[Resolved] Making all segments of a view clickable

This support ticket is created 5 years, 1 month ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

This topic contains 2 replies, has 2 voices.

Last updated by deliap 5 years, 1 month ago.

Assisted by: Nigel.

Author
Posts
#1412457

Tell us what you are trying to do?
We've created views and we would like all aspects of the views to be clickable. We have the following components
Featured Image - we'd like this to link to the post
Post Title with link - this is working as we'd like
Post Meta - Author - we'd like this to link to the author

Is there any documentation that you are following? No

Is there a similar example that we can see? hidden link

What is the link to your site? hidden link

#1412831

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

Hi there

For the featured image you would need to construct a link around the image where you pass the post URL as the href of the link.

So something like this:

<a href="[wpv-post-url]">[wpv-post-featured-image size="medium"]</a>

When you insert the post author you can specify the format should be a link to the author archive which will add an attribute to the shortcode like so:

[wpv-post-author format="link"]
#1413363

My issue is resolved now. Thank you!