Hi Ted,
Checking your website it appears that your references to our widgets script are corrupted, I see the following error in the console:
``
Your embed codes appear to have been HTML-escaped inside of your source, which is preventing the script from executing:
<script>// <![CDATA[
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
// ]]></script></p>
The cause of this is likely in your own website, perhaps it’s double-escaping the code as a security measure. You could try changing the <script> portion from the inline block we provide by default to this:
<script async src="//platform.twitter.com/widgets.js"></script>
Note that you only need to include this once on your page for all widgets: The default code ensures that the tag doesn’t get duplicated but this way you should just put the code in your page footer and remove all other Twitter <script> tags.
Let me know how you get on!
Ben