Quote:
Originally Posted by paradoxG(r)eek
But let's start with a simple notice. At headinclude you're loading 3 times the same jquery file. That's not correct. So, find in headinclude template:
Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery.nivo.slider.js"></script>
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery.nivo.slider.pack.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
and replace it with:
Code:
<vb:if condition="THIS_SCRIPT !== 'video'">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</vb:if>
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery.nivo.slider.js"></script>
<script type="text/javascript" src="https://baeckerei-lieb.de/nivo-slider/js/jquery.nivo.slider.pack.js"></script>
I also have some doubts if you really need the slider.pack but for the moment let it there. In my text I didn't loaded it and the slider was working fine.
Please let me know.
|
I think I load it in header, not in headinclude. Only css load in headinclude.