What I’m trying to do
I’m mostly following this tutorial to create a movie database but using the TMDB API and with local images instead. I’m trying to change it so when you click or tap on the movie posters it will redirect you to the movie page.
Things I have tried
I’ve found people on Discord that have got it working for external links and also this source that got it working for internal links with the caveat of requiring a full path. I’m syncing this vault with my phone so I’d have to use a relative path.
Here is an example of what my properties look like for a movie.
Here is my dataview table code.
TABLE WITHOUT ID
poster AS Poster,
link(file.link, title) AS Title
FROM "movies"
WHERE !watched
SORT title
Which looks like this.
Currently hovering over a movie poster changes the cursor to the magnifier zoom in but clicking does nothing.