faqs
3 months ago
arrow.php
2 months ago
articles.php
3 months ago
create-ticket.php
3 months ago
error.php
3 months ago
faqs.php
3 months ago
getting-started.php
3 months ago
latest-tutorials.php
3 months ago
need-help-paid.php
3 months ago
need-help.php
3 months ago
page.php
3 months ago
searchbox.php
3 months ago
videos.php
3 months ago
need-help.php
37 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Need help card. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <div class="advads-card bg-gray-100"> |
| 11 | <h3 class="mt-0 mb-2"><?php esc_html_e( 'Need more help?', 'advanced-ads' ); ?></h3> |
| 12 | |
| 13 | <p> |
| 14 | <?php esc_html_e( 'On the free plan, support is available via guides and community forums.', 'advanced-ads' ); ?> |
| 15 | </p> |
| 16 | |
| 17 | <p> |
| 18 | <?php echo wp_kses_post( __( 'Upgrade to <strong>A2 Pro</strong> to get:', 'advanced-ads' ) ); ?> |
| 19 | </p> |
| 20 | |
| 21 | <ul class="list-disc list-inside"> |
| 22 | <li> |
| 23 | <?php esc_html_e( 'Priority support from our team', 'advanced-ads' ); ?> |
| 24 | </li> |
| 25 | <li> |
| 26 | <?php esc_html_e( 'Help directly inside the plugin', 'advanced-ads' ); ?> |
| 27 | </li> |
| 28 | <li> |
| 29 | <?php esc_html_e( 'Faster issue resolution', 'advanced-ads' ); ?> |
| 30 | </li> |
| 31 | </ul> |
| 32 | |
| 33 | <a href="https://wpadvancedads.com/checkout/?edd_action=add_to_cart&download_id=95170&utm_source=advanced-ads&utm_medium=link&utm_campaign=plugin_support_need_help_upgrade" class="button button-block mt-6"> |
| 34 | <?php esc_html_e( 'Upgrade to Premium', 'advanced-ads' ); ?> |
| 35 | </a> |
| 36 | </div> |
| 37 |