activate-license.jsx
1 week ago
cached-websites.jsx
1 week ago
getting-started.jsx
1 week ago
index.jsx
1 week ago
manage-ads-across-multiple-installations.jsx
1 week ago
prevent-click-fraud.jsx
1 week ago
share-statistics.jsx
1 week ago
subscription-not-working.jsx
1 week ago
video-ads.jsx
1 week ago
index.jsx
72 lines
| 1 | /** |
| 2 | * External Dependencies |
| 3 | */ |
| 4 | import { __ } from '@wordpress/i18n'; |
| 5 | |
| 6 | /** |
| 7 | * Internal Dependencies |
| 8 | */ |
| 9 | import { GettingStarted } from './getting-started'; |
| 10 | import { ActivateLicense } from './activate-license'; |
| 11 | import { VideoAds } from './video-ads'; |
| 12 | import { SubscriptionNotWorking } from './subscription-not-working'; |
| 13 | import { CachedWebsites } from './cached-websites'; |
| 14 | import { ShareStatistics } from './share-statistics'; |
| 15 | import { ManageAdsAcrossMultipleInstallations } from './manage-ads-across-multiple-installations'; |
| 16 | import { PreventClickFraud } from './prevent-click-fraud'; |
| 17 | |
| 18 | const FAQS = [ |
| 19 | { |
| 20 | title: __( |
| 21 | 'What are best practices for getting started with Advanced Ads?', |
| 22 | 'advanced-ads' |
| 23 | ), |
| 24 | content: <GettingStarted />, |
| 25 | }, |
| 26 | { |
| 27 | title: __( 'Are video ads better than image ads?', 'advanced-ads' ), |
| 28 | content: <VideoAds />, |
| 29 | }, |
| 30 | { |
| 31 | title: __( |
| 32 | 'How do I activate my license on a test site?', |
| 33 | 'advanced-ads' |
| 34 | ), |
| 35 | content: <ActivateLicense />, |
| 36 | }, |
| 37 | { |
| 38 | title: __( |
| 39 | 'I purchased a subscription but can’t see the features in the backend of my website. Why?', |
| 40 | 'advanced-ads' |
| 41 | ), |
| 42 | content: <SubscriptionNotWorking />, |
| 43 | }, |
| 44 | { |
| 45 | title: __( |
| 46 | 'Does Advanced Ads work on cached websites?', |
| 47 | 'advanced-ads' |
| 48 | ), |
| 49 | content: <CachedWebsites />, |
| 50 | }, |
| 51 | { |
| 52 | title: __( |
| 53 | 'How can I share the statistics of my ads with my clients?', |
| 54 | 'advanced-ads' |
| 55 | ), |
| 56 | content: <ShareStatistics />, |
| 57 | }, |
| 58 | { |
| 59 | title: __( |
| 60 | 'Can I manage ads across multiple WordPress installations from one website?', |
| 61 | 'advanced-ads' |
| 62 | ), |
| 63 | content: <ManageAdsAcrossMultipleInstallations />, |
| 64 | }, |
| 65 | { |
| 66 | title: __( 'How can I prevent click fraud on my ads?', 'advanced-ads' ), |
| 67 | content: <PreventClickFraud />, |
| 68 | }, |
| 69 | ]; |
| 70 | |
| 71 | export { FAQS }; |
| 72 |