PluginProbe
Floating Button – Easily Create Sticky, Fixed & Floating Buttons / 6.0
Floating Button – Easily Create Sticky, Fixed & Floating Buttons v6.0
trunk 2.0.2 3.0 4.0 4.1.2 4.3 5.0 5.0.1 5.1 5.1.1 5.2 5.3 5.3.1 6.0 6.0.1 6.0.10 6.0.11 6.0.12 6.0.13 6.0.2 6.0.3 6.0.4 6.0.5 6.0.6 6.0.7 All 31 releases
floating-button / includes / pages / 4.support.php

4.support.php in Floating Button – Easily Create Sticky, Fixed & Floating Buttons 6.0, at includes/pages/4.support.php

28 lines 734 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 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