| 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 printf( esc_html__( 'To get your support related question answered in the fastest timing, please send a message via the form below or write to us on email %1$s.', 'floating-button' ), '<a href="mailto:' . sanitize_email( $emil ) . '">' . sanitize_email( $emil ) . '</a>' ); ?> |
| 18 |
</p> |
| 19 |
|
| 20 |
<p> |
| 21 |
<?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'floating-button' ); ?> |
| 22 |
</p> |
| 23 |
|
| 24 |
<?php SupportForm::init(); ?> |
| 25 |
|
| 26 |
</div> |
| 27 |
<?php |
| 28 |
|