Preview:
function queryHawke(){
  $w('#repeaterHawke').data=[]
  
  console.log('about to query Hawke wheels')
$w.onReady(function () {
  $w("#repeaterHawke").onItemReady(($item, itemData, index) => {
// const clickedImage = $item("#imageHinge")
$item("#imageHawke").src = itemData.imageLink;
$item("#nameHawke").text = itemData.name;
  // $item("#imageHinge").onClick( (event) => {wixLocation.to(itemData.productUrl)} );
  //$item('#viewHinge').onClick(() => {wixWindow.openLightbox('image', itemData)});
});

wixData.query("wheelSpec")
.eq("brand", "Hawke wheels")
.eq("nameFeat", true)
.ascending("name")
    .find()
    .then((results) => {
      console.log('query result done with hawke')
        if (results.totalCount > 0) {
        $w("#repeaterHawke").data = results.items;
      } 
     })
    .catch((error) => {
        
      console.log("Error:", error.message);
    }); 
   });
 }
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter