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
video-ads.jsx
55 lines
| 1 | /** |
| 2 | * External Dependencies |
| 3 | */ |
| 4 | import { __, sprintf } from '@wordpress/i18n'; |
| 5 | |
| 6 | export function VideoAds() { |
| 7 | const p1 = __( |
| 8 | 'In general, <strong>video ads tend to generate higher engagement rates</strong> compared to static image ads, primarily because motion naturally draws user attention, especially on content-heavy pages where users are scrolling quickly. That moving part will make users stop scrolling and check.', |
| 9 | 'advanced-ads' |
| 10 | ); |
| 11 | const p3 = sprintf( |
| 12 | /* translators: 1: link to video ads guide, 2: link to video ads configuration guide, 3: closing anchor tag */ |
| 13 | __( |
| 14 | '%1$sRead more%3$s about video ads, and %2$slearn how to configure them%3$s using Advanced Ads.', |
| 15 | 'advanced-ads' |
| 16 | ), |
| 17 | '<a href="https://wpadvancedads.com/beginners-guide-video-ads/?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_faqs_video_ads" target="_blank" rel="noopener noreferrer">', |
| 18 | '<a href="https://wpadvancedads.com/video-ads/?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_faqs_video_ads" target="_blank" rel="noopener noreferrer">', |
| 19 | '</a>' |
| 20 | ); |
| 21 | |
| 22 | return ( |
| 23 | <> |
| 24 | <p dangerouslySetInnerHTML={ { __html: p1 } } /> |
| 25 | <p> |
| 26 | { __( |
| 27 | 'Performance is highly dependent on several factors:', |
| 28 | 'advanced-ads' |
| 29 | ) } |
| 30 | </p> |
| 31 | <ul className="list-disc list-inside"> |
| 32 | <li>{ __( 'Your audience and niche', 'advanced-ads' ) }</li> |
| 33 | <li>{ __( 'Placement position', 'advanced-ads' ) }</li> |
| 34 | <li>{ __( 'Page load performance', 'advanced-ads' ) }</li> |
| 35 | <li> |
| 36 | { __( |
| 37 | 'The quality and relevance of the creative', |
| 38 | 'advanced-ads' |
| 39 | ) } |
| 40 | </li> |
| 41 | <li>{ __( 'How intrusive the format is', 'advanced-ads' ) }</li> |
| 42 | </ul> |
| 43 | |
| 44 | <p> |
| 45 | { __( |
| 46 | 'While video ads often deliver stronger engagement metrics (CTR, viewability, time on ad), they can also negatively impact user experience and performance if not implemented carefully.', |
| 47 | 'advanced-ads' |
| 48 | ) } |
| 49 | </p> |
| 50 | |
| 51 | <p dangerouslySetInnerHTML={ { __html: p3 } } /> |
| 52 | </> |
| 53 | ); |
| 54 | } |
| 55 |