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
searchbox.php
39 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Searchbox for support page. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | */ |
| 8 | |
| 9 | ?> |
| 10 | <div class="advads-card text-center"> |
| 11 | <h2 class="m-0 text-2xl"><?php esc_html_e( 'How can we help?', 'advanced-ads' ); ?></h2> |
| 12 | <p><?php esc_html_e( 'Search for a topic or browse our documentation.', 'advanced-ads' ); ?></p> |
| 13 | |
| 14 | <div class="advads-searchbox"> |
| 15 | <svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 21 21" fill="none"> |
| 16 | <path d="M19.25 19.25L14.9 14.9M17.25 9.25C17.25 13.6683 13.6683 17.25 9.25 17.25C4.83172 17.25 1.25 13.6683 1.25 9.25C1.25 4.83172 4.83172 1.25 9.25 1.25C13.6683 1.25 17.25 4.83172 17.25 9.25Z" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/> |
| 17 | </svg> |
| 18 | <input |
| 19 | type="text" |
| 20 | class="input" |
| 21 | id="advads-support-search" |
| 22 | placeholder="<?php esc_attr_e( 'Search help articles, guides and FAQs', 'advanced-ads' ); ?>" |
| 23 | autocomplete="off" |
| 24 | role="combobox" |
| 25 | aria-autocomplete="list" |
| 26 | aria-haspopup="true" |
| 27 | aria-expanded="false" |
| 28 | aria-controls="suggestions-list" |
| 29 | > |
| 30 | <ul id="suggestions-list" class="suggestions-list"> |
| 31 | <li> |
| 32 | <a href="#"> |
| 33 | <?php esc_html_e( 'How to create a new ad', 'advanced-ads' ); ?> |
| 34 | </a> |
| 35 | </li> |
| 36 | </ul> |
| 37 | </div> |
| 38 | </div> |
| 39 |