Quote:
Originally Posted by lillylissy
|
Being stuborn is not good in life, but in coding it helps a lot
Well, I was able to fix the conflist. It caused by the load of:
Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
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.