.comment-form-url,
#url,
label[for="url"] {
    display: none !important;
}
document.addEventListener('DOMContentLoaded', function() {
  const commentForm = document.getElementById('commentform');
  if (!commentForm) return;

  commentForm.addEventListener('submit', function(e) {
    alert('Bedankt voor je reactie!');
  });
});