| 1 |
<?php |
| 2 |
/** |
| 3 |
* Page Name: Support |
| 4 |
* |
| 5 |
*/ |
| 6 |
|
| 7 |
use FloatingButton\Dashboard\SupportForm; |
| 8 |
use FloatingButton\WOW_Plugin; |
| 9 |
|
| 10 |
defined( 'ABSPATH' ) || exit; |
| 11 |
$emil = WOW_Plugin::info('email'); |
| 12 |
?> |
| 13 |
|
| 14 |
<div class="w_block w_has-border"> |
| 15 |
|
| 16 |
<p> |
| 17 |
<?php |
| 18 |
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', 'floating-button' ); |
| 19 |
echo ' <a href="' . esc_url( WOW_Plugin::info( 'support' ) ) . '">' . esc_html__( 'support page', 'floating-button' ) . '</a>'; |
| 20 |
?> |
| 21 |
</p> |
| 22 |
|
| 23 |
<p> |
| 24 |
<?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'floating-button' ); ?> |
| 25 |
</p> |
| 26 |
|
| 27 |
<?php SupportForm::init(); ?> |
| 28 |
|
| 29 |
</div> |
| 30 |
|
| 31 |
<?php |
| 32 |
|