I would like to remove order total block on cart and checkout page. I am not able to find any action or filter to remove order total. I don\'t want to use css to h
If its input field you can remove its value like
$('#div_id').val('');
If its div or span you can do
$("div").empty(); S('#div_id div').html('');