Change the background color on fixed delivery orders
Learn how to give orders with a specific shipping method a special background color in the admin order overview.
In Shoporama's order overview, you can give orders with a specific shipping method a special background color. This makes it easy to distinguish pickup orders from shipping orders, for example.
Find the shipping method class
Each shipping method is automatically given a CSS class in the HTML based on its name. For example:
- "Pickup" → pickup
- "Post Nord" → post_nord
- "GLS Pakkeshop" → gls_pakkeshop
You can find the exact class by right-clicking on an order in the browser and selecting "View source code" / "Inspect Element".
Add CSS
Go to Account → Company → Admin Appearance and add CSS. Example that gives pickup orders a green background:
tr.pickup td { background-color: #d4edda !important; }
You can use any CSS color. More examples:
/* Green for pickup */ tr.pickup td { background-color: #d4edda !important; } /* Blue for Post Nord */ tr.post_nord td { background-color: #cce5ff !important; } /* Yellow for GLS */ tr.gls_pakkeshop td { background-color: #fff3cd !important; }
Do you need help? Contact us at support@shoporama.dk.
Related articles
Comments on GLS orders
How comments work on GLS orders in Shoporama. The customer's checkout comment is used as a DepositService instruction to the driver, and you can...
Automatic cancellation of unpaid orders
Set Shoporama to automatically cancel unpaid orders after a number of minutes. Frees up inventory and keeps the order list clean. The value is in...
Blacklist - Block unwanted orders
Learn how to use Shoporama's blacklist feature to block spam orders and unwanted customers by blacklisting email, phone number or IP address.