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
subscription-not-working.jsx
19 lines
| 1 | /** |
| 2 | * External Dependencies |
| 3 | */ |
| 4 | import { __, sprintf } from '@wordpress/i18n'; |
| 5 | |
| 6 | export function SubscriptionNotWorking() { |
| 7 | const p1 = sprintf( |
| 8 | /* translators: 1: link to purchase licenses page, 2: closing anchor tag */ |
| 9 | __( |
| 10 | 'This is likely because you haven’t installed the additional add-ons. Please log in to your Advanced Ads account, download the necessary add-ons, and upload the downloaded zip files to your WordPress site. Install and activate them as you would any other WordPress plugin. %1$sHow to install an Add-On%2$s', |
| 11 | 'advanced-ads' |
| 12 | ), |
| 13 | '<a href="https://wpadvancedads.com/manual/how-to-install-an-add-on/?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 |