| 1 |
<?php |
| 2 |
/** |
| 3 |
* Page Name: Support |
| 4 |
* |
| 5 |
*/ |
| 6 |
|
| 7 |
use ButtonGenerator\Admin\SupportForm; |
| 8 |
use ButtonGenerator\WOWP_Plugin; |
| 9 |
|
| 10 |
defined( 'ABSPATH' ) || exit; |
| 11 |
?> |
| 12 |
|
| 13 |
<div class="wpie-block-tool is-white"> |
| 14 |
|
| 15 |
<p> |
| 16 |
<?php |
| 17 |
esc_html_e( 'To get your support related question answered in the fastest timing, please send a message via the form below or write to us via', 'button-generation' ); |
| 18 |
echo ' <a href="' . esc_url( WOWP_Plugin::info( 'support' ) ) . '">' . esc_html__( 'support page', 'button-generation' ) . '</a>'; |
| 19 |
?> |
| 20 |
</p> |
| 21 |
|
| 22 |
<p> |
| 23 |
<?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'button-generation' ); ?> |
| 24 |
</p> |
| 25 |
|
| 26 |
<?php SupportForm::init(); ?> |
| 27 |
|
| 28 |
</div> |
| 29 |
<?php |
| 30 |
|