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-paid.php
29 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 flex flex-col"> |
| 11 | <div> |
| 12 | <div class="header-icon"> |
| 13 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"> |
| 14 | <path d="M22 19C22 19.5304 21.7893 20.0391 21.4142 20.4142C21.0391 20.7893 20.5304 21 20 21H4C3.46957 21 2.96086 20.7893 2.58579 20.4142C2.21071 20.0391 2 19.5304 2 19V5C2 4.46957 2.21071 3.96086 2.58579 3.58579C2.96086 3.21071 3.46957 3 4 3H9L11 6H20C20.5304 6 21.0391 6.21071 21.4142 6.58579C21.7893 6.96086 22 7.46957 22 8V19Z" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/> |
| 15 | </svg> |
| 16 | </div> |
| 17 | |
| 18 | <h3><?php esc_html_e( 'Access Priority Support', 'advanced-ads' ); ?></h3> |
| 19 | |
| 20 | <p> |
| 21 | <?php echo wp_kses_post( __( 'As a paid user, you receive <strong>priority, premium support from our specialists</strong>. Submit a support ticket and get fast, tailored assistance to resolve your request.', 'advanced-ads' ) ); ?> |
| 22 | </p> |
| 23 | </div> |
| 24 | |
| 25 | <a href="#advads-create-ticket" data-dialog="advads-create-ticket" class="button button-block mt-auto"> |
| 26 | <?php esc_html_e( 'Submit a ticket', 'advanced-ads' ); ?> |
| 27 | </a> |
| 28 | </div> |
| 29 |