Jquery to remove all decimals
// remove decimals $('.remove-decimals').find('.price').each(function() { $(this).html($(this).html().replace(".00","")); });