Hi,
It’s not an error in our plugin. You have some Javascript on your page which is causing an error when you click on links containing a page fragment (#). That’s why they’re not working. You can see a screen grab of the error here: https://prnt.sc/hjeeit
This is the code causing your problem:
// Fa saltare lentamente in basso sino alla fine degli articoli
jQuery(document).ready(function($) {
$(“a”).on(‘click’, function(event)
{
if (this.hash !== “”) {
event.preventDefault();
var hash = this.hash;
$(‘html, body’).animate(
{
scrollTop: $(hash).offset().top
}, 1000, function() {
window.location.hash = hash;
});
}
});
});