Sayfaya jquery kütüphane dahil edilmemiş sanırım edilmişse de ben göremedim. Bir başka ihtimal ise js kodlarında $ yerine jQuery kullanılması gerektiği.

$(".comment-click-1890").on("click", function(){
$(".com-click-id-1890").show();
$(".disqus-thread-1890").show();
$(".com-but-1890").hide();
});


Yerine

jQuery(".comment-click-1890").on("click", function(){
jQuery(".com-click-id-1890").show();
jQuery(".disqus-thread-1890").show();
jQuery(".com-but-1890").hide();
});