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
activate-license.php
39 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Activate license FAQ. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <p> |
| 11 | <?php esc_html_e( 'Many customers maintain a local, non-public site for testing, or troubleshooting purposes. This setup is particularly helpful for staging complex changes and verifying their expected behaviour before releasing it to the public.', 'advanced-ads' ); ?> |
| 12 | </p> |
| 13 | |
| 14 | <p> |
| 15 | <?php |
| 16 | echo wp_kses_post( |
| 17 | sprintf( |
| 18 | /* translators: 1: link to purchase licenses page, 2: closing anchor tag */ |
| 19 | __( 'Testing sites do not count towards your Advanced Ads site limit. We automatically detect testing sites based on the URL patterns in %1$sthis list%2$s.', 'advanced-ads' ), |
| 20 | '<a href="https://wpadvancedads.com/manual/purchase-licenses/#Test_sites?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_faqs_getting_started" target="_blank" rel="noopener noreferrer">', |
| 21 | '</a>' |
| 22 | ) |
| 23 | ) |
| 24 | ?> |
| 25 | </p> |
| 26 | |
| 27 | <p> |
| 28 | <?php |
| 29 | echo wp_kses_post( |
| 30 | sprintf( |
| 31 | /* translators: 1: link to purchase licenses page, 2: closing anchor tag */ |
| 32 | __( 'If you are running the plugin on one of those URLs, the activation works even if you hit your limit. You can always manage license activations in %1$syour account%2$s.', 'advanced-ads' ), |
| 33 | '<a href="https://wpadvancedads.com/account/?utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_faqs_getting_started" target="_blank" rel="noopener noreferrer">', |
| 34 | '</a>' |
| 35 | ) |
| 36 | ) |
| 37 | ?> |
| 38 | </p> |
| 39 |