-
AuthorPosts
-
April 4, 2024 at 9:11 am #1439170
I have installed a plugin called Chaty for direct online chat on the website.
This is not functioning properly because of layersliderThere seems to be some script on the website which triggers HTML body click frequently. Please check the video below and you can see the count of console log.
https://drive.google.com/file/d/1R9GKiBADC-vngycKoB3XHerwBkCqmmfb/view?usp=sharingWe’re not really 100% percent sure but it looks like this script https://taratec.co.za/wp-content/themes/enfold/config-layerslider/LayerSlider/assets/static/layerslider/js/layerslider.kreaturamedia.jquery.js?ver=7.9.1.
From the LayerSlider plugin.Please advise as this is needed urgently on the website as clients are using it daily.
I did get rid of all other errors that were showing, some were wooCommerce tacking , which I stopped.
April 4, 2024 at 10:17 am #1439182Hey StephenStamp,
Thank you for the inquiry.
We can’t reproduce the issue on our end, but based on the short clip, looks like the body click or the console.log is triggered by the custom jQuery script, which seems to have been directly created in the browser console. Please check the screenshot in the private field.
Best regards,
IsmaelApril 4, 2024 at 10:45 am #1439184HI Ismael
I have not created any custom js script as far as I know little bit beyond me at this point.
I would not even know where to look sorry any other assistance you could give would be appreciatedApril 4, 2024 at 12:40 pm #1439194where would aI begin to look for this and even try to sort it out…
April 4, 2024 at 10:32 pm #1439237Hi,
I tested your page with this script and it looks like the click is on the av-horizontal-gallery-next button, try disabling the Gallery Image Rotation.jQuery(document).on("click", "body,html", function(event) { console.log("Clicked Element:", event.target); console.log("Element Classes:", event.target.className); console.log("Element ID:", event.target.id); console.log("Element Tag Name:", event.target.tagName); console.log("Parent Elements:", getParentElements(event.target)); }); function getParentElements(element) { var parents = []; var currentElement = element.parentNode; while (currentElement !== null) { parents.push(currentElement); currentElement = currentElement.parentNode; } return parents; }
Best regards,
Mike -
AuthorPosts
- You must be logged in to reply to this topic.