• 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.

Reset Views

ibenick

Member
Showcase
I'm finally going to launch my showcase tomorrow, but I'm wondering if there is a way to reset the views on all of my showcase items. I've racked up a bunch of views while getting everything customized, and it would be nice to reset them so it's not skewed.
 
run an update statement (in phpMyAdmin) against the items table to zero out the view_count data.

Code:
UPDATE xf_nflj_showcase_item
SET view_count = 0;
 
Back
Top