Hide Disk Usage; Style Carousel Title

taylor_smith

Well-known member
I'd prefer not to show disk usage in my "Gallery Statistics" sidebar. How may I hide this from guests/users?

Additionally, is there an easy way (e.g., style properties) to style the image carousel title?
 
You can remove the disk usage from the xengallery_media_statistics_block template. Remove this section:

Code:
<dl class="ctrlUnit">
    <dt>{xen:phrase xengallery_disk_usage}:</dt>
    <dd>{xen:number $xenCache.xengalleryStatisticsCache.disk_usage, size}</dd>
</dl>

There isn't any style properties for that, but the CSS should be trivial. Have you got something specific in mind that you want to do to it?
 
Top Bottom