Exclude specific user roles from analytics in FiboSearch

Exclude specific user roles from analytics in FiboSearch on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'dgwt/wcas/analytics/exclude_roles', function () {
    return array(
        'administrator',
        'shop_manager'
    );
} );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.