How to remove order total from cart and checkout page woocommerce

前端 未结 2 1041
攒了一身酷
攒了一身酷 2021-01-19 02:30

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

2条回答
  •  青春惊慌失措
    2021-01-19 03:15

    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('');
    

提交回复
热议问题