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
page.php
41 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Support page. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <div class="hidden"> |
| 11 | <span class="wp-header-end"></span> |
| 12 | </div> |
| 13 | <div class="wrap advads-wrap advads-support-wrap"> |
| 14 | <?php require_once 'searchbox.php'; ?> |
| 15 | |
| 16 | <div class="grid sm:grid-cols-2 xl:grid-cols-4 gap-5 mt-8"> |
| 17 | <?php require_once 'getting-started.php'; ?> |
| 18 | <?php require_once 'latest-tutorials.php'; ?> |
| 19 | <?php require_once 'articles.php'; ?> |
| 20 | <?php require_once \Advanced_Ads_Admin_Licenses::get_instance()->any_license_valid() ? 'need-help-paid.php' : 'need-help.php'; ?> |
| 21 | </div> |
| 22 | |
| 23 | <?php require_once 'faqs.php'; ?> |
| 24 | <?php require_once 'videos.php'; ?> |
| 25 | |
| 26 | <?php |
| 27 | advads_modal( |
| 28 | [ |
| 29 | 'id' => 'advads-create-ticket', |
| 30 | 'title' => __( 'Get help from our support team', 'advanced-ads' ), |
| 31 | 'description' => __( 'Describe your issue and our support team will review it as soon as possible. You’ll receive a confirmation email after submitting your request.', 'advanced-ads' ), |
| 32 | 'save_label' => __( 'Submit', 'advanced-ads' ), |
| 33 | 'close_label' => __( 'Cancel', 'advanced-ads' ), |
| 34 | 'file_path' => ADVADS_ABSPATH . 'views/admin/support/create-ticket.php', |
| 35 | 'wrap_class' => 'advsads-dialog-sm advads-dialog-create-ticket manual', |
| 36 | ] |
| 37 | ); |
| 38 | ?> |
| 39 | |
| 40 | </div> |
| 41 |