PluginProbe
Bubble Menu – Floating Button Menu with Sticky Navigation / 4.0.2
Bubble Menu – Floating Button Menu with Sticky Navigation v4.0.2
trunk 1.3 2.0 2.2 2.2.1 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 4.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.0.7 4.1 4.1.1
bubble-menu / admin / pages / 4.support.php

4.support.php in Bubble Menu – Floating Button Menu with Sticky Navigation 4.0.2, at admin/pages/4.support.php

30 lines 709 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 BubbleMenu\Admin\SupportForm;
8 use BubbleMenu\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', 'bubble-menu' );
18 echo ' <a href="' . esc_url( WOWP_Plugin::info( 'support' ) ) . '">' . esc_html__( 'support page', 'bubble-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.', 'bubble-menu' ); ?>
24 </p>
25
26 <?php SupportForm::init(); ?>
27
28 </div>
29 <?php
30