Using Verse of the day with Wordpress

I have pasted the following code as copied from Biblia.com in my home page and as a widget (both using html).
<!-- Verse of the Day. https://biblia.com/plugins/verseoftheday -->
<biblia:verseoftheday resource="esv" width="300" height="250" singleImage="false" theme="imagebased" variant="dark"></biblia:verseoftheday>
<!-- If you’re including multiple Biblia widgets, you only need this script tag once -->
<script src="//biblia.com/api/logos.biblia.js"></script>
<script>logos.biblia.init();</script>
When I view the site the only thing that displays is "biblia.com/api/logos.biblia.js".
Any Suggestions?
Comments
-
I am not at my computer, but it seems like
<script src="//biblia.com/api/logos.biblia.js"></script> should be
<script src="http://biblia.com/api/logos.biblia.js"></script>
Using Logos as a pastor, seminary professor, and Tyndale author
0 -
After following your suggestion:
<!-- Verse of the Day. https://biblia.com/plugins/verseoftheday -->
<!-- If you’re including multiple Biblia widgets, you only need this script tag once -->
<a href="http://biblia.com/api/logos.biblia.js">http://biblia.com/api/logos.biblia.js</a>
logos.biblia.init();The page displays :
-
Bible Verse of the Day
http://biblia.com/api/logos.biblia.js
logos.biblia.init();
0 -
-
Try this
<!-- Verse of the Day. https://biblia.com/plugins/verseoftheday -->
<script type="text/javascript" src="http://biblia.com/api/logos.biblia.js"></script>
<script type="text/javascript">logos.biblia.init();</script>
<biblia:verseoftheday resource="esv" width="300" height="250" singleImage="false" theme="imagebased" variant="dark"></biblia:verseoftheday>Using Logos as a pastor, seminary professor, and Tyndale author
0 -
I copied and pasted what you typed into a widget and it gets converted to the following
<!-- Verse of the Day. https://biblia.com/plugins/verseoftheday -->
<a href="http://biblia.com/api/logos.biblia.js">http://biblia.com/api/logos.biblia.js</a>
logos.biblia.init();when I save it.
0