activate-license.jsx
1 month ago
cached-websites.jsx
1 month ago
getting-started.jsx
1 month ago
index.jsx
1 month ago
manage-ads-across-multiple-installations.jsx
1 month ago
prevent-click-fraud.jsx
1 month ago
share-statistics.jsx
1 month ago
subscription-not-working.jsx
1 month ago
video-ads.jsx
1 month ago
share-statistics.jsx
16 lines
| 1 | /** |
| 2 | * External Dependencies |
| 3 | */ |
| 4 | import { __, sprintf } from '@wordpress/i18n'; |
| 5 | |
| 6 | export function ShareStatistics() { |
| 7 | const p1 = sprintf( |
| 8 | /* translators: 1: link to shareable link page, 2: closing anchor tag */ |
| 9 | __( '%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' ), |
| 10 | '<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">', |
| 11 | '</a>' |
| 12 | ); |
| 13 | |
| 14 | return <p dangerouslySetInnerHTML={ { __html: p1 } } />; |
| 15 | } |
| 16 |