I am an employee of Jupiter’s community page (https://community.jupiter.money/) How do I remove the number per months next to my category. Circled it for easy understanding
브라우저 인스펙터를 사용하여 대상이 될 올바른 CSS 클래스를 찾을 수 있습니다. 그런 다음 Customization > Theme component 내에서 CSS를 사용해 해당 열을 숨기면 됩니다. Hide Users Column 에서 비슷한 작업이 수행되었지만, 동일한 열에 대한 것은 아닙니다.
Sorry, I don’t fully understand, could you make it easier? I checked the link you sent and that has a built theme component to remove the users, not one for the months
What I suggested would require some understanding of HTML and CSS, with this understanding, you’d use your browser’s inspector to check for the CSS class and make edits to fit what you’d want. You can then add these edits to your site using a theme-component.
The link I shared shows a theme-component that was created for an almost similar purpose so you could look through it and get an idea of how to create one for your site.
Let me also share some resources to help you better understand how to edit and customise the Discourse UI.
Here are some resources.
You could create a theme component with the following CSS in it, and include that component in your site’s theme.
/* Removes the x per week on /categories page */
th.topics, td.topics {
display: none;
}
