PluginProbe
Float menu – awesome floating side menu / 6.1
Float menu – awesome floating side menu v6.1
7.2.5 trunk 2.1 2.2 3.0.1 3.1 3.2.2 3.3.1 3.5 3.5.1 3.5.2 3.5.3. 3.5.4 4.0 4.1 4.1.1 4.2 4.3 4.3.1 4.3.2 5.0 5.0.1 5.0.2 5.0.3 5.1 All 57 releases
float-menu / admin / pages / 4.support.php

4.support.php in Float menu – awesome floating side menu 6.1, at admin/pages/4.support.php

30 lines 712 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Page Name: Support
4 *
5 */
6
7 use FloatMenuLite\Admin\SupportForm;
8 use FloatMenuLite\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', 'float-menu' );
18 echo ' <a href="' . esc_url( WOWP_Plugin::info( 'support' ) ) . '">' . esc_html__( 'support page', 'float-menu' ) . '</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.', 'float-menu' ); ?>
24 </p>
25
26 <?php SupportForm::init(); ?>
27
28 </div>
29 <?php
30