| @@ -3,37 +3,25 @@ | ||
| 3 | 3 | * Page Name: Support |
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -use WPCoder\Dashboard\DashboardInitializer; | |
| 8 | 7 | use WPCoder\Dashboard\SupportForm; |
| 9 | -use WPCoder\WPCoder; | |
| 8 | +use WPCoder\WOW_Plugin; | |
| 10 | 9 | |
| 11 | 10 | defined( 'ABSPATH' ) || exit; |
| 12 | -$emil = WPCoder::info( 'email' ); | |
| 11 | +$emil = WOW_Plugin::EMAIl | |
| 13 | 12 | ?> |
| 14 | 13 | |
| 15 | - <div class="wowp-header-wrapper"> | |
| 16 | - <?php DashboardInitializer::header(); ?> | |
| 14 | + <div class="w_block w_has-border"> | |
| 17 | 15 | |
| 18 | - <div class="wowp-header-title"> | |
| 19 | - <h2><?php esc_html_e( 'Support', 'wpcoder' ); ?></h2> | |
| 20 | - </div> | |
| 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.', 'wpcoder' ), '<a href="mailto:' . sanitize_email( $emil ) . '">' . sanitize_email( $emil ) . '</a>' ); ?> | |
| 18 | + </p> | |
| 21 | 19 | |
| 22 | - </div> | |
| 20 | + <p> | |
| 21 | + <?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'wpcoder' ); ?> | |
| 22 | + </p> | |
| 23 | 23 | |
| 24 | - <div class="wrap wowp-wrap"> | |
| 25 | - <div class="w_block w_has-border"> | |
| 24 | + <?php SupportForm::init(); ?> | |
| 26 | 25 | |
| 27 | - <p> | |
| 28 | - <?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.', 'wpcoder' ), '<a href="mailto:' . sanitize_email( $emil ) . '">' . sanitize_email( $emil ) . '</a>' ); ?> | |
| 29 | - </p> | |
| 30 | - | |
| 31 | - <p> | |
| 32 | - <?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'wpcoder' ); ?> | |
| 33 | - </p> | |
| 34 | - | |
| 35 | - <?php SupportForm::init(); ?> | |
| 36 | - | |
| 37 | - </div> | |
| 38 | 26 | </div> |
| 39 | 27 | <?php |