Skip to main content

How to Hide the Remaining Credits / Hours on the Sidebar (Client View)

In this article, we will guide you on how to hide the view of remaining credits or hours in the sidebar.

Written by Regine Garcia

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

  1. Log in to your ManyRequests Admin Dashboard

  2. Go to Settings > Portal > Advanced > Custom Styles


    This is where you can add your CSS overrides to control how the portal looks for clients.

  3. Copy and paste the following CSS snippet

.client-sidebar nav a[href*="/credits"] {
display: none !important;
}

4. Click on Save Changes

Did this answer your question?