You can hide the category and subcategory quantities on your Item Gallery using the CSS code snippets below.
Hiding Category Quantities
// Hides top-level category count badges
.gspro-o-category > a > .gspro-u-badge {
display: none;
}
Below is an example of how this appears in Squarespace. After adding the code snippet, the category quantities disappear.
Hiding Subcategory Quantities
// Hides sub-category count badges
.gspro-o-subcategories > li > a > .gspro-u-badge {
display: none;
}
Below is an example of how this appears in Squarespace. After adding the code snippet, the subcategory quantities disappear.
Hiding the Category and Subcategory Quantities
To hide both, keep the code snippets separate when adding them. This ensures they are recognized as separate snippets that must be used together.
Below is an example of how this appears in Squarespace. After adding the code snippet, the category and subcategory quantities disappear.