Joe Link said:Basically the same as you did in CAS and RMS, it'd be nice if we could see how many people are watching a showcase item (just the number).
I've implemented this in SC 3.2.7. The only place (right now) that the number is displayed is in the Item information block.
Note: Just like in CAS and RMS, the Watch Count for a given item, does not include Item Authors that are watching their own items.
If you want to custom place the watch count data, its included in the Item Entity where ever Item Entities are exposed.
Very basic example...
Code:
<xf:if is="$item.watch_count">
{{ phrase('xa_sc_watchers') }}: {$item.watch_count|number}
</xf:if>
Upvote
0