Plugin Author
malihu
(@malihu)
Hello,
The plugin itself can’t really cause such issue. What happens when you temporarily deactivate “Page scroll to id” plugin?
The problem seems to come from this (“header-footer-elementor”) script:
...plugins/header-footer-elementor/inc/js/frontend.js
You can try disabling this “header-footer-elementor” functionality by going to “Page scroll to id” settings and setting the “Prevent other scripts from handling plugin’s links selector(s)” option field value to:
a[href*='#']:not([href='#'])
If this doesn’t help, you’d probably need to manually edit frontend.js and change the function selector in line 641. Let me know if you want to do this so I can tell you exactly what code to add/modify.
Hi Malihu,
Thanks for quick response. Please let me know what i need to edit in frontend.js file
Plugin Author
malihu
(@malihu)
You’re welcome. Try this:
Edit frontend.js and change the line 641 from:
$( '.elementor-element-' + id + ' ul.hfe-nav-menu li a' ).on(
to:
$( '.elementor-element-' + id + ' ul.hfe-nav-menu li a:not(".__mPS2id")' ).on(
Save the file, test your page and let me know.
Hi Malihu,
still getting the same issue. Can you please check
Plugin Author
malihu
(@malihu)
OK. Try this test:
Change line 641 to:
$( '.elementor-element-' + id + ' ul.hfe-nav-menu-dummy li a:not(".__mPS2id")' ).on(
Let me know
Plugin Author
malihu
(@malihu)
@singlacards I’m marking this as resolved but let me know if you need more help 🙂