activate-license.php
3 months ago
cached-websites.php
3 months ago
getting-started.php
3 months ago
manage-ads-across-multiple-installations.php
3 months ago
prevent-click-fraud.php
3 months ago
share-statistics.php
3 months ago
subscription-not-working.php
3 months ago
video-ads.php
3 months ago
subscription-not-working.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Subscription not working FAQ. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <p> |
| 11 | <?php |
| 12 | echo wp_kses_post( |
| 13 | sprintf( |
| 14 | /* translators: 1: link to purchase licenses page, 2: closing anchor tag */ |
| 15 | __( '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', 'advanced-ads' ), |
| 16 | '<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">', |
| 17 | '</a>' |
| 18 | ) |
| 19 | ); |
| 20 | ?> |
| 21 | </p> |
| 22 |