import {local} from 'wix-storage'; const linkField = "link-to-item"; // replace this value $w.onReady(function () { $w("#CC Projects").onReady(() => { const numberOfItems = $w("#CC Projects").getTotalCount(); $w("#CC Projects").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); } ); } ); } );
top of page

There’s Nothing Here...

We can’t find the page you’re looking for.
Check the URL, or head back home.

bottom of page