Support has been upgraded!
The Support Forum is closed. Not to worry! Providing the top quality support you expect and we're known for will continue! We're not ending support, just changing where you submit requests. This will provide you with the best experience possible.
Premium Support
Have you purchased an addon for Connections such as one of our premium templates or extensions with a valid license and you need help?
Please open a Support Ticket in your user account.
Free Support
Are you using the free Connections plugin? Don't worry, you are still very important to us! We are still providing you with the same high quality support that we're known for.
Please open a new support topic in the WordPress support forums for Connections.
- This topic has 24 replies, 2 voices, and was last updated 7 years, 4 months ago by
Karine VOINCON.
-
AuthorPosts
-
07/01/2016 at 3:06 pm #381143
Karine VOINCON
Participant@ Steven
Here is what I have at line 1214 :
$.fn.slider = function (arg) { return this.each(function () { var element = $(this), data = element.data("slider"), options = typeof arg === "object" && arg; if (!data) { data = new Slider(element, options); element.data("slider", data); } if (typeof arg === "string" && data[arg]) { data[arg](); } else if (data.settings.auto && element.is(":visible")) { data.start(); } }); };
But I do not know very well javascript.
Will you give me more details07/02/2016 at 11:18 am #381316Steven Zahm
Keymaster@ Karine
Not sure what you are asking … I only pointed out that code as the potential source of the conflict since it seems to occupy the same namespace as the jQuery Slider. You’d have to the theme dev to see if this is indeed the source and ask if they could make it so it does not conflict with jQuery Slider.
07/03/2016 at 12:31 pm #381390Karine VOINCON
Participant@ Steven
It’s been several hours I want, but I can not find.
But I found a trick to parry: I added a script in my theme which removes the Classname “ui-slider ui-slider-horizontal ….” and the “span class=”ui-slider-handle ….” ” in my header
07/04/2016 at 9:40 am #381441Steven Zahm
Keymaster@ Karine
re: But I found a trick to parry: I added a script in my theme which removes the Classname “ui-slider ui-slider-horizontal ….” and the “span class=”ui-slider-handle ….” ” in my header
What was the script? Be great to know in case anyone else ever runs into this same issue.
07/04/2016 at 12:53 pm #381460Karine VOINCON
Participanthere is the script I added :
<script> $( document ).ready(function() { document.getElementById('DiapoHeader').classList.remove('ui-slider', 'ui-slider-horizontal', 'ui-widget', 'ui-widget-content', 'ui-corner-all'); $('span[class^="ui"]').remove(); }); </script>
-
AuthorPosts
You cannot reply to this support topic. Please open your own support topic.