Hello!
I don’t know what happened that yesterday my homepage was blank! I restored a past version of the store, but now the slider and the product collections are not showing at all. I believe some script is causing this trouble but I’m not able to find it.
My store is: gaiaflowerhouse.myshopify.com
Hi @marcopaaz ,
Hope you are doing well.
You need to solve this bug on your site. This problem causes error that can not run the slider… on your site
Please take a look at our screenshot here: https://prnt.sc/112szh0
Hope this helps!
1 Like
tim_1
April 4, 2021, 5:00pm
3
Hi Marco,
as @LitExtension suggested, this is the reason why your theme does not work properly.
This happens because your theme uses jQuery, and adds some extensions to it, but then this copy of jQuery is replaced by another, which does not have necessary extensions. This is a popular problem with many apps and theme modifications.
However, your theme loads 4 copies of this library – here is a piece of rendered code from your theme.liquid layout – I’ve marked with bold these 4 lines which include different versions of the jquery library.
I’d suggest to remove first, second and forth of them. This should fix your problem. (at the very least remove only the fourth line!)
**<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js" type="text/javascript"></script>**
**<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" type="text/javascript"></script>**
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/modernizr-2.8.3.min.js?v=17472752542221191523" type="text/javascript"></script>
**<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/jquery-1.12.0.min.js?v=18030333829914722022" type="text/javascript"></script>**
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/popper.js?v=3469533037526083960" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/bootstrap.min.js?v=1688375208433119495" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/imagesloaded.pkgd.min.js?v=12208268496583150306" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/isotope.pkgd.min.js?v=150839955339585319" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/owl.carousel.min.js?v=7581371558069594612" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/plugins.js?v=8637084513311273263" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/jquery.matchHeight.js?v=242242051106828713" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/instafeed.min.js?v=11359110845692623092" type="text/javascript"></script>
<!-- Ajax Cart js -->
<script src="//cdn.shopify.com/shopifycloud/shopify/assets/themes_support/option_selection-fe6b72c2bbdd3369ac0bfefe8648e3c889efca213baefd4cfb0dd9363563831f.js" type="text/javascript"></script>
<script src="//cdn.shopify.com/shopifycloud/shopify/assets/themes_support/api.jquery-e94e010e92e659b566dbc436fdfe5242764380e00398907a14955ba301a4749f.js" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/cart.api.js?v=3511104519158709079" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0520/4819/9850/t/3/assets/theme.js?v=14854002820796408650" type="text/javascript"></script>
<script src="//cdn.shopify.com/shopifycloud/shopify/assets/themes_support/shopify_common-8ea6ac3faf357236a97f5de749df4da6e8436ca107bc3a4ee805cbf08bc47392.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/css/bootstrap-datetimepicker.min.css" />
**<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>**
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/js/bootstrap-datetimepicker.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/locale/es.js"></script>
2 Likes