To enable the ability to leave answers to comments on the Wodpress website without page refresh. Add the code below to yours function.php file
function add_comments_reply() { wp_enqueue_script('comment-reply'); } add_action('wp_enqueue_scripts', 'add_comments_reply');