PluginProbe
WP Coder – Insert & Manage Code Snippets / trunk
WP Coder – Insert & Manage Code Snippets vtrunk
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
← All changes | includes/pages/4.support.php +25 -10 3.0.4trunk View file →
@@ -3,25 +3,40 @@
3 3 * Page Name: Support
4 4 *
5 5 */
6 6
7 +use WPCoder\Dashboard\DashboardInitializer;
7 8 use WPCoder\Dashboard\SupportForm;
8 -use WPCoder\WOW_Plugin;
9 +use WPCoder\WPCoder;
9 10
10 11 defined( 'ABSPATH' ) || exit;
11 -$emil = WOW_Plugin::EMAIl
12 +$emil = WPCoder::info( 'email' );
12 13 ?>
13 14
14 - <div class="w_block w_has-border">
15 + <div class="wowp-header-wrapper">
16 + <?php DashboardInitializer::header(); ?>
15 17
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>
18 + <div class="wowp-header-title">
19 + <h2><?php esc_html_e( 'Support', 'wp-coder' ); ?></h2>
20 + </div>
19 21
20 - <p>
21 - <?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'wpcoder' ); ?>
22 - </p>
22 + </div>
23 23
24 - <?php SupportForm::init(); ?>
24 + <div class="wrap wowp-wrap">
25 + <div class="w_block w_has-border">
25 26
27 + <p>
28 + <?php
29 + 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', 'wp-coder' );
30 + echo ' <a href="https://wordpress.org/support/plugin/wp-coder/" target="_blank">' . esc_html__( 'support page', 'wp-coder' ) . '</a>';
31 + ?>
32 + </p>
33 +
34 + <p>
35 + <?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'wp-coder' ); ?>
36 + </p>
37 +
38 + <?php SupportForm::init(); ?>
39 +
40 + </div>
26 41 </div>
27 42 <?php