# bubble-menu/4.0.4/admin/pages/4.support.php

Bubble Menu – Floating Button Menu with Sticky Navigation, version 4.0.4. 30 lines.

- Page: https://pluginprobe.com/plugins/bubble-menu/4.0.4/code/admin/pages/4.support.php
- Raw: https://pluginprobe.com/plugins/bubble-menu/4.0.4/raw/admin/pages/4.support.php
- Modified: 2025-03-18T08:56:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bubble-menu/4.0.4/code/admin/pages/4.support.php#L10-L20`.

```php
<?php
/**
 * Page Name: Support
 *
 */

use BubbleMenu\Admin\SupportForm;
use BubbleMenu\WOWP_Plugin;

defined( 'ABSPATH' ) || exit;
?>

    <div class="wpie-block-tool is-white">

        <p>
			<?php
			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' );
			echo ' <a href="' . esc_url( WOWP_Plugin::info( 'support' ) ) . '">' . esc_html__( 'support page', 'bubble-menu' ) . '</a>';
			?>
        </p>

        <p>
			<?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'bubble-menu' ); ?>
        </p>

		<?php SupportForm::init(); ?>

    </div>
<?php

```
