activate-license.php
3 months ago
cached-websites.php
3 months ago
getting-started.php
3 months ago
manage-ads-across-multiple-installations.php
3 months ago
prevent-click-fraud.php
3 months ago
share-statistics.php
3 months ago
subscription-not-working.php
3 months ago
video-ads.php
3 months ago
share-statistics.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Share statistics FAQ. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <p> |
| 11 | <?php |
| 12 | echo wp_kses_post( |
| 13 | sprintf( |
| 14 | /* translators: 1: link to shareable link page, 2: closing anchor tag */ |
| 15 | __( '%1$sAs shown here%2$s, the Tracking add-on allows you to generate non-indexed public statistics pages for each ad. You can share these links directly with your advertisers so they can view performance data, including impressions, clicks, a visual graph, and customizable date range filters.', 'advanced-ads' ), |
| 16 | '<a href="https://wpadvancedads.com/manual/tracking-documentation/#Public_Stats/?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_faqs_getting_started" target="_blank" rel="noopener noreferrer">', |
| 17 | '</a>' |
| 18 | ) |
| 19 | ); |
| 20 | ?> |
| 21 | </p> |
| 22 |