PluginProbe
Floating Button – Easily Create Sticky, Fixed & Floating Buttons / 6.0.10
Floating Button – Easily Create Sticky, Fixed & Floating Buttons v6.0.10
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.10, at includes/pages/4.support.php

32 lines 775 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
18 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', 'floating-button' );
19 echo ' <a href="' . esc_url( WOW_Plugin::info( 'support' ) ) . '">' . esc_html__( 'support page', 'floating-button' ) . '</a>';
20 ?>
21 </p>
22
23 <p>
24 <?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'floating-button' ); ?>
25 </p>
26
27 <?php SupportForm::init(); ?>
28
29 </div>
30
31 <?php
32