Fixing a Spinning Widget

To fix a spinning widget, please troubleshoot by doing the following:


  1. Make sure the website you are using is the one you entered in to get your widget

For example, if you are putting the widget on entrythingy.com, you cannot center in entrythingy.org as the site domain for your widget. These two sites have to match, or there will be a security error.


  1. Check if the widget has groupuser=false

Your original code may look like this:

<script src="https://entrythingy.s3.amazonaws.com/resources/entrythingy_gallery.js" type="text/javascript" language="Javascript"></script>
<span id='et_dataarea0'></span><span id='et_dataarea1'></span><span id='et_dataarea2'></span><span id='et_dataarea3'></span><span id='et_dataarea4'></span>
<div id='et_apparea' style='text-align:left;'><p><img src=https://entrythingy.s3.amazonaws.com/images/loading.gif> <a href=https://www.entrythingy.com>Loading ...</a></p></div>
<script type="text/javascript" language="Javascript">
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();
</script>

Try adding groupuser=false; right after typefilter="accepted";  .


Eg, your new code would look like:

<script src="https://entrythingy.s3.amazonaws.com/resources/entrythingy_gallery.js" type="text/javascript" language="Javascript"></script>
<span id='et_dataarea0'></span><span id='et_dataarea1'></span><span id='et_dataarea2'></span><span id='et_dataarea3'></span><span id='et_dataarea4'></span>
<div id='et_apparea' style='text-align:left;'><p><img src=https://entrythingy.s3.amazonaws.com/images/loading.gif> <a href=https://www.entrythingy.com>Loading ...</a></p></div>
<script type="text/javascript" language="Javascript">
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();
</script>

If you are using Wix, please add a custom code element to your body and then paste in the code you generated.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.