Sometimes you may want to simplify your client’s view inside the portal. A common request is hiding the Remaining Credits / Hours section in the sidebar so clients only focus on the essentials. While this is not a built-in toggle, you can achieve it with a quick custom CSS snippet.
📌 Use Case
Imagine you run a design subscription agency where clients buy credits or hours. Some clients get anxious when they see their balance drop every time they submit a request. Instead of focusing on collaboration, they might hold back to “save” credits. To make the experience smoother, you decide to keep credits hidden from the client’s sidebar but still track everything internally on your end.
Step-by-Step: Hiding Remaining Credits / Hours
Log in to your ManyRequests Admin Dashboard
Go to Settings > Portal > Advanced > Custom Styles
This is where you can add your CSS overrides to control how the portal looks for clients.Copy and paste the following CSS snippet
.client-sidebar nav a[href*="/credits"] {
display: none !important;
}4. Click on Save Changes
