Hello,
Thank for fixing the credentials ; I am not able to access to the HikaMarket front-end interface.
By reading the source code of the page, we can see "when" jquery-ui is included :
<script src="/media/system/js/fields/calendar.min.js" type="text/javascript"></script>
<script src="/components/com_jfbconnect/includes/jfbconnect.js?v=6" type="text/javascript"></script>
<script src="/media/jui/js/bootstrap.min.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
<script src="/media/system/js/frontediting.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
<script src="/media/jui/js/jquery.ui.core.min.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
<script src="/modules/mod_accordeonck/assets/mod_accordeonck.js" type="text/javascript"></script>
<script src="/modules/mod_accordeonck/assets/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="/media/system/js/modal.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
And if we take another page in your website, like an article, we can see that there is almost the same kind of inclusion:
<script src="/media/jui/js/jquery.ui.core.min.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
<script src="/modules/mod_accordeonck/assets/mod_accordeonck.js" type="text/javascript"></script>
<script src="/modules/mod_accordeonck/assets/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="/media/system/js/mootools-core.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
<script src="/media/system/js/core.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
<script src="/media/system/js/mootools-more.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
<script src="/media/system/js/modal.js?a268526e1d0fd1d6fe7d7e603d5c385a" type="text/javascript"></script>
Now, why is there a JS issue ?
Joomla jquery-ui version is :
jQuery UI - v1.9.2 - 2013-07-14
Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.position.js
While HikaShop jquery-ui version is:
jQuery UI - v1.12.1 - 2017-02-26
Includes: widget.js, data.js, disable-selection.js, keycode.js, scroll-parent.js, widgets/draggable.js, widgets/droppable.js, widgets/resizable.js, widgets/selectable.js, widgets/sortable.js, widgets/datepicker.js, widgets/mouse.js, widgets/slider.js, effect.js
The uploader and some other features in HikaShop (and HikaMarket) requires the "widgets/draggable" (for the drag'n'drop to sort elements).
That widget is not included in the joomla jquery-ui file ; but there is the definition of the "widget".
And because that file is included after the HikaShop one, it overrides the functions.. With older content.
I'm afraid that the only solution I see is to modify the Joomla jquery-ui file in order to use a recent version of the file and not something 4 years old !
Regards,