Turn the images into links to the detail pages of their respective records

This is an example on the page I’m building Yapiko team building
In it you can see images of both Users and Achievements, two related entities in Airtable.
From both types of images you should be able to navigate to their respective detail pages, eg:

I think it is a fairly common feature that the images are related to specific database entities and that you want to be able to navigate to the detail page of said entities from them.
I hope you consider implementing this feature as I think it wouldn’t be too hard to do (since list blocks currently do it already) and would add a lot of value to Softr as a product.
Thanks.

1 Like

Hey @jesus,

Thanks for your feedback.

I will add this as a feature request.

But I think that there is a workaround. You can create a formula field to gather all the links of the images. Then you can create another formula where you will have HTML A Tag

<a href="https://www.example.com/">
         <img alt="Example" src="https://www.example.com/images/banner_logo.png"
         width=150" height="70">
      </a>

You will include the links within the formula and when clicking on the images, it should do the trick.

I hope this will help.

Hi @Suzie.

I will try that when I can.

Thank you!

1 Like