Omeka S Statistics Module - hide "Position" from Resource page?

I recently installed the Statistics module in Omeka S. It shows a snippet at the bottom of each Resource page like so:

image

Is it possible to hide this snippet from public view while using this module? I would like to be able to see the statistics on the admin side only, but not sure how to accomplish this.

@jbhistorian , I was trying to figure this out as well and ended up just adding some custom CSS to hide it:

.statistics-stat{
   display: none;
}

You could do this in your theme or with the CSS Editor module

1 Like

Perfect. That worked.