help-page.php
4 months ago
license-activate-card.php
4 months ago
license-card.php
4 months ago
licenses-page.php
4 months ago
recommended-plugins-data.php
3 months ago
recommended-plugins-page.php
3 months ago
help-page.php
32 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WhatsappScoped; |
| 4 | |
| 5 | /** |
| 6 | * Help page view — minimal with support links. |
| 7 | * |
| 8 | * @package YayCommerce\AdminShell\Views |
| 9 | */ |
| 10 | \defined('ABSPATH') || exit; |
| 11 | ?> |
| 12 | <div class="wrap"> |
| 13 | <h1><?php |
| 14 | \esc_html_e('YayCommerce Help', 'yaycommerce'); |
| 15 | ?></h1> |
| 16 | <p><?php |
| 17 | \esc_html_e('Need help? Visit our support resources:', 'yaycommerce'); |
| 18 | ?></p> |
| 19 | <ul> |
| 20 | <li><a href="https://yaycommerce.com/support" target="_blank" rel="noopener noreferrer"><?php |
| 21 | \esc_html_e('Support Center', 'yaycommerce'); |
| 22 | ?></a></li> |
| 23 | <li><a href="https://yaycommerce.com/documentation" target="_blank" rel="noopener noreferrer"><?php |
| 24 | \esc_html_e('Documentation', 'yaycommerce'); |
| 25 | ?></a></li> |
| 26 | <li><a href="https://yaycommerce.com/contact" target="_blank" rel="noopener noreferrer"><?php |
| 27 | \esc_html_e('Contact Us', 'yaycommerce'); |
| 28 | ?></a></li> |
| 29 | </ul> |
| 30 | </div> |
| 31 | <?php |
| 32 |