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
prevent-click-fraud.jsx
19 lines
| 1 | /** |
| 2 | * External Dependencies |
| 3 | */ |
| 4 | import { __, sprintf } from '@wordpress/i18n'; |
| 5 | |
| 6 | export function PreventClickFraud() { |
| 7 | const p1 = sprintf( |
| 8 | /* translators: 1: link to manage ads page, 2: closing anchor tag */ |
| 9 | __( |
| 10 | 'You can protect your ads by using the Click Fraud Protection feature included in Advanced Ads Pro. This feature automatically hides an ad once a defined number of clicks from the same user is reached, helping to prevent repeated or suspicious clicks and reducing the risk of fraudulent activity. %1$sYou can find more details here%2$s.', |
| 11 | 'advanced-ads' |
| 12 | ), |
| 13 | '<a href="https://wpadvancedads.com/manual/click-fraud-protection/?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_faqs_getting_started" target="_blank" rel="noopener noreferrer">', |
| 14 | '</a>' |
| 15 | ); |
| 16 | |
| 17 | return <p dangerouslySetInnerHTML={ { __html: p1 } } />; |
| 18 | } |
| 19 |