view-counter
1 year ago
appearance.blade.php
1 year ago
block-by-role.blade.php
1 month ago
block-ips.blade.php
1 year ago
capabilities.blade.php
1 year ago
delete.blade.php
1 year ago
disable-admin-toolbar-analytics.blade.php
2 years ago
disable-views-column.blade.php
2 years ago
disable-widget.blade.php
2 years ago
email-reports.blade.php
3 weeks ago
export-reports.blade.php
1 month ago
first-day-of-week.blade.php
2 years ago
index.blade.php
2 years ago
pruner.blade.php
3 weeks ago
track-authenticated-users.blade.php
2 years ago
view-counter.blade.php
1 month ago
visitor-salt-refresh-interval.blade.php
1 month ago
woocommerce.blade.php
1 month ago
visitor-salt-refresh-interval.blade.php
11 lines
| 1 | <select name="iawp_visitor_salt_refresh_interval" id="iawp_visitor_salt_refresh_interval" value="<?php echo esc_attr($interval); ?>"> |
| 2 | <?php foreach ($options as $value => $label): ?> |
| 3 | <option value="<?php echo esc_attr($value); ?>" <?php selected($value, $interval, true); ?>> |
| 4 | <?php echo esc_html($label); ?> |
| 5 | </option> |
| 6 | <?php endforeach ?> |
| 7 | </select> |
| 8 | <p class="description"> |
| 9 | <?php echo esc_html__("Enabling this option improves data privacy at the expense of unique visitor count accuracy.", 'independent-analytics') . ' <a href="https://independentwp.com/knowledgebase/data/refresh-visitor-salt/" target="_blank">' . esc_html__('Learn more.', 'independent-analytics') . '</a>'; ?> |
| 10 | </p> |
| 11 |