Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author elsbree

    (@elsbree)

    It looks like your embed script is commented out on the New Earth Records site. I see this:


    <script type="text/javascript">// <![CDATA[ (function() {var script = document.createElement("script");
    ....

    The // makes a comment in Javascript, which means that everything on the line after it will be ignored. You can either get rid of the whole // <![CDATA[ section, as well as the // ]]> at the end of the line, or you can put the // <!CDATA[ on the line before the rest of the code.

    In other words, a simple solution should just be to make the code look like

    <script type="text/javascript">// <![CDATA[
    (function() {var script = document.createElement("script");
    ......

    I hope that helps!

    Thread Starter tessasomnuk

    (@tessasomnuk)

    Got it to work! Thanks so much!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Player working on one site, but not the other’ is closed to new replies.