• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Implemented Add number of item watchers to item stats

Bob

Developer
Staff member
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.

Selection_397.png


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
This suggestion has been implemented. Votes are no longer accepted.
Back
Top