Plugin Author
malihu
(@malihu)
Hello,
Your theme has its own page scrolling function and prevents “Page scroll to id” from doing its thing.
Go to “Page scroll to id” settings and enable/check “Prevent other scripts from handling plugin’s links” option. Save changes and test your page.
Let me know if it worked
Hello @malihu
Thanks for your reply, I just tried it and unfortunately, it didn’t work 🙁
is there any other solutions.
Thanks
Plugin Author
malihu
(@malihu)
If the option cannot remove the theme events automatically you’ll need to do it manually.
Edit your theme’s js file:
...themes/sydney/js/main.min.js
find the text:
.mainnav a[href*="#"]
and change it to:
.mainnav a[href*="#"]:not(._mPS2id-h)
Save the file and test.
@malihu
ok, I just did it but unfortunately, it didn’t work either.
Plugin Author
malihu
(@malihu)
Try changing it to:
.mainnav a[href*="#"]:not([data-ps2id-api])
It worked , awesome
Thank you very much, I really appreciate it.
Plugin Author
malihu
(@malihu)
You’re welcome.
If you want to do the same for other links (e.g. like your “click to begin” button), you can do the same by removing the text:
a.roll-button[href*="#"],
which is right after the text you changed.
oh yeah I forgot about that, okay I deleted the text, and now it’s working
fine 🙂
Thanks really
@malihu