The plugin is not loaded correctly because a few errors in the script above it are keeping it from being launched properly.
If you view the source of your site and the look at lines 567-572, you’ll see this:
<script type="text/javascript">
<!— SULVO TRAFFIC QUALITY CHECK TAG -->
<script type="text/rocketscript" data-rocketsrc="//n-cdn.areyouahuman.com/play/d3051e7b44bba9321de2988123098457bad9d0b5?AYAH_F2=http://digitalsynopsis.com"></script><noscript><img src="//n-cdn.areyouahuman.com/noscript/d3051e7b44bba9321de2988123098457bad9d0b5?AYAH_F2=http://digitalsynopsis.com"></noscript>
<script type="text/javascript" src="//cdn.adrta.com/aa.js#sx;paid=sas;avid=digitalsynopsis.com;caid=digitalsynopsis.com;plid=digitalsynopsis.com;publisherId=digitalsynopsis.com;kv1=none;” </script>
<!— SULVO TRAFFIC QUALITY CHECK TAG END -->
First, you’ll see that’s a <script> within a <script> (line 567 and line 570). You only need one of those so you need to remove the one on 567.
Second, there is a closing bracket missing before </script> on line 571, as well as double curly quotes while it opens with “regular” quotes. You have:
<script type="text/javascript" src="//cdn.adrta.com/aa.js#sx;paid=sas;avid=digitalsynopsis.com;caid=digitalsynopsis.com;plid=digitalsynopsis.com;publisherId=digitalsynopsis.com;kv1=none;” </script>
Which should be:
<script type="text/javascript" src="//cdn.adrta.com/aa.js#sx;paid=sas;avid=digitalsynopsis.com;caid=digitalsynopsis.com;plid=digitalsynopsis.com;publisherId=digitalsynopsis.com;kv1=none;"> </script>
If you fix the issues with those scripts, it will unblock the loading of the Sticky Anything plugin and things should be fine.
Thanks Mark. Yes, the errors in the scripts were causing the issue. We’ve corrected them and the plugin is working fine now. Thanks once again.