Fixing a Spinning Artist Showcase
To fix a spinning Artist Showcase, please troubleshoot by doing the following:
- Make sure the website you are using is the one you entered in to get your showcase
For example, if you are putting the showcase on entrythingy.com, you cannot center in entrythingy.org as the site domain for your showcase. These two sites have to match, or there will be a security error.
- Check if the showcase has groupuser=false
Your original code may look like this:
```

var sitecode="base64encoded"; et_lang="en"; var showid="99999"; typefilter="accepted"; imagewidth="220"; shownames=true; namebusiness="name"; showspaces=false; sort="et_item.category, et_user.last_name"; catfilter="all"; comments=false; moderation=false; recentcomments=false; rcwidth=200; originals=true; links=false; showaddress=false; showphone=false; revdimensions=true; revmaterial=true; revprice=true; revyear=false; detailrevisions="accepted"; sales=true; pe='hello@entrythingy.com'; shipping='0'; shippingpercent='0'; taxrate='06.625'; entryThingyGallery();
```
Try adding groupuser=false; right after typefilter="accepted"; .
Eg, your new code would look like:
```

var sitecode="base64encoded"; et_lang="en"; var showid="99999"; typefilter="accepted";groupuser=false; imagewidth="220"; shownames=true; namebusiness="name"; showspaces=false; sort="et_item.category, et_user.last_name"; catfilter="all"; comments=false; moderation=false; recentcomments=false; rcwidth=200; originals=true; links=false; showaddress=false; showphone=false; revdimensions=true; revmaterial=true; revprice=true; revyear=false; detailrevisions="accepted"; sales=true; pe='hello@entrythingy.com'; shipping='0'; shippingpercent='0'; taxrate='06.625'; entryThingyGallery();
```
If you are using Wix, please add a custom code element to your body and then paste in the code you generated.