Custom Statements

Is it possible to create a custom statement that does not show the total sales to date?

Hello @John_Charnock1

If you add the below to the Account Settings > Design customisation > Advanced CSS & HTML Customisation screen under Client Statement CSS, save file then activate it.

.invoice-label-row3 {
display: none;
}

You should end up with the result below

image

Thanks, that worked

Can I do the same for payments ?

Hello @John_Charnock1

The same process would apply

Add the same code in below what you entered but adjust it to row 4

Sorted, many thanks

J

One more request

How do I remove Payments Recieved ?

Hello @John_Charnock1

Try the same thing with

footer-pay-GBP-row

.invoice-label-row3 {
display: none;
}
.invoice-label-row4 {
display: none;
}
}
.footer-pay-GBP-row {
display: none;
}

This does not work

Hello @John_Charnock1

You have an extra } in your code.

This works

.invoice-label-row3 {
display: none;
}
.invoice-label-row4 {
display: none;
}
.footer-pay-GBP-row {
display: none;
}

This topic was automatically closed after 7 days. New replies are no longer allowed.