prova ad incollare direttamente il codice nel template:
<script>
$("a[href^='#']").on('click', function(e) {
e.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(this.hash).offset().top-120
}, 500, function(){
//window.location.hash = hash;
});
});
</script>