# weforms/1.4.8/includes/templates/dokan/dashboard-contact-section.php

weForms – Easy Drag &amp; Drop Contact Form Builder For WordPress, version 1.4.8. 44 lines.

- Page: https://pluginprobe.com/plugins/weforms/1.4.8/code/includes/templates/dokan/dashboard-contact-section.php
- Raw: https://pluginprobe.com/plugins/weforms/1.4.8/raw/includes/templates/dokan/dashboard-contact-section.php
- Modified: 2020-01-10T10:15:44+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/weforms/1.4.8/code/includes/templates/dokan/dashboard-contact-section.php#L10-L20`.

```php
<div class="dokan-dashboard-wrap">

    <?php

        /**
         *  dokan_dashboard_content_before hook
         *  dokan_dashboard_support_content_before
         *
         *  @hooked get_dashboard_side_navigation
         *
         *  @since 2.4
         */
        do_action( 'dokan_dashboard_content_before' );
        do_action( 'dokan_dashboard_support_content_before' );
    ?>

    <div class="dokan-dashboard-content dokan-wpuf-dashboard">
		<?php

            $form_id = dokan_get_option( 'vendor_contact_form', 'weforms_integration' );

            if ( !empty( $form_id ) ) {
                echo do_shortcode('[weforms id="'.$form_id.'"]');
            } else{
                esc_html_e( 'No contact form assigned yet by marketplace owner.', 'weforms' );
            }

		?>
    </div><!-- .dokan-dashboard-content -->

    <?php

        /**
         *  dokan_dashboard_content_after hook
         *  dokan_dashboard_support_content_after hook
         *
         *  @since 2.4
         */
        do_action( 'dokan_dashboard_content_after' );
        do_action( 'dokan_dashboard_support_content_after' );
    ?>

</div><!-- .dokan-dashboard-wrap -->

```
