top of page

Loop Next & Previous Buttons on Dynamic Pages

Updated: Dec 30, 2024



Velo Code:


import {local} from 'wix-storage';

const linkField = "link-team-title"; // replace this value

$w.onReady(function () {
  $w("#teamDataset").onReady(() => {
    const numberOfItems = $w("#teamDataset").getTotalCount();
  
    $w("#teamDataset").getItems(0, numberOfItems)
      .then( (result) => { 
        const dynamicPageURLs = result.items.map(item => item[linkField]);
        local.setItem('dynamicPageURLs', dynamicPageURLs);
      } )
      .catch( (err) => {
        console.log(err.code, err.message);
      } );
  } );
} );

Enjoy!

Scene 02 (0-00-00-26).jpg

elevate your client projects?

Transform Your Projects with the Ultimate 2024-2025 Wix Studio Template Bundle!

Group 8.png
bottom of page