Adding Links to Shots (or Groups)

Any way to add links to video Shots? Or even to a group (Shots + Text)?
I’d love to make a portfolio of Shots that each has an own link.
Would that be possible with custom code?

1 Like

SOLVED IT!!! :dancing_women: :partying_face: :tada: :piñata:

<script>
  setTimeout(function() {

  $('[data-id=ENTER ID HERE]').css({"cursor":"pointer"}).on('click', function() {
   window.location.href = "ENTER LINK HERE";
   });
    
     }, 1000);  

</script>
1 Like