How to remove descriptions in the header label on clients statements

My bad - looking again at the structure in my browser “inspect element” tool, the row classes are invoice label, not invoice details

Screenshot 2024-10-06 at 20.19.03

so you need

.invoice-details-tbl .invoice-label-row3,
.invoice-details-tbl .invoice-label-row4,
.invoice-details-tbl .invoice-label-row5 {
  display: none;
}
1 Like