Hi,
The error is related to the fact that you do not have mootools in your website.
I already submitted improvements for the compare system which would be included in HikaShop 3.0.1.
Before that, you can edit the file "components/com_hikashop/views/product/tmpl/listing.php" and replace the code
$$('input.hikashop_compare_checkbox').each(function(el){
el.checked = false;
});
By
try{
document.querySelectorAll('input.hikashop_compare_checkbox').forEach(function(el){
el.checked = false;
});
}catch(e){}
Regards,