Still catching up, sorry for being late to the party here @tobiaseigen
A minor observation, would it be considered inconsistent to have four of the Site Activity
statistics “in the last 7 days” and one of the statistics “today” ?
Still catching up, sorry for being late to the party here @tobiaseigen
A minor observation, would it be considered inconsistent to have four of the Site Activity
statistics “in the last 7 days” and one of the statistics “today” ?
The old About page had a “stats” class on a div that allowed “Site activity” to be easily suppressed via custom CSS:
//suppress site statistics on old About page
.stats {
display: none;
}
The new About page lacks this div class. It would be nice to have, but for anyone else not wanting site stats shown, here’s a way to suppress the separate elements as they’re currently rendered:
// suppress site statistics on NEW About page
.about__right-side H3:nth-of-type(2),
.about__right-side .about__activities,
.traffic-info-footer, {
display: none;
}
Hello, I really like this new about page but I have one quick question, where is the community owner shown? I see the field for it in the settings, but when saved I don’t see it on the public page. Is this an unfinished feature or is it just going to be used for critical notifications and not shown on /about? Thanks.