PluginProbe
Button Generator – Easily Create Custom Buttons with Icons and Analytics / trunk
Button Generator – Easily Create Custom Buttons with Icons and Analytics vtrunk
trunk 1.1.1 2.0 2.1 2.2 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.2 3.1.3 3.2 3.2.1 3.2.2 3.2.3 All 28 releases
button-generation / admin / pages / 4.support.php

4.support.php in Button Generator – Easily Create Custom Buttons with Icons and Analytics trunk, at admin/pages/4.support.php

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