How to add a bookmark button for videos / jump to timestamp / resumable video.

Hello,

I am working on an online course website with a member’s area. Once a member logs in, I would like to have a button that they can click on so that they can jump to the exact video and exact timestamp where they left off. Here’s an example (minus the button): https://wistia.com/learn/product-updates/pick-up-where-you-paused-with-resumable-video.

If that isn’t possible, is there a way for them to jump to the last video or page that they viewed?

Thanks!

Hello tangycandy,

to jump / navigate to the last viewed site is surely possible.
For this issue i can suggest 2-options…

  1. local storage of Wix.
    https://www.wix.com/corvid/reference/wix-storage.html#local
  2. using an own database + (a data-query / dataset)
    https://www.wix.com/corvid/reference/wix-data.html

For example you have a page where you show a list (table) full of videos.
To navigate to this page, you take the saved data (from local or from database)
navigates to this saved page with …
https://www.wix.com/corvid/reference/wix-location.html
and if you set some anchors, i think you also will be able to navigate direct to the last shown video.
https://www.wix.com/corvid/reference/$w.Anchor.html

Something like this would be my first idea, if i wanted to realize your project.