There are essentially two flavours of what we call the printed materials in BRM, emails sent to the customer/store (provisional/confirmed/adhoc etc) and the printout which can be printed directly from the RDP.
These documents share some core components through a style sheet. Code can be entered in Settings > Notifications > Advanced to modify this style sheet.
Below is a table of common modification requests from customers.
The code needs pasting into the Notifications Print CSS text box in Settings > Notifications > Advanced in the same format shown in the table. If multiple are required, just paste in one after another with a blank like between.
Function | Code | Comments |
Hide shop logo at top of the email | #logo.brm-row{ display: none; } | Shop logo (Settings > General) is shown at the top of all emails by default. No logo is ever shown on the printout. |
Set email background colour of email to white | body { background-color: #ffffff; } | By default the background colour of emails is #f5f5f5, a very light gray. |
Hide the "Total Rec'd" row from emails and print | #total-rcvd-row{ display: none; } | Showing the amount received is too much info for some shops, they only want to show the total and outstanding amounts. |
Hide the [reservation] "Stage" row from emails and print | #stage-row{ display: none; } | Provisional and Confirmed are not translated into other languages due to being reservation stages. Hiding them is a possible workaround if the store doesn't want any english in their emails |