Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Tanvir Hasan

    (@tanvirh)

    Hi @8bit7

    You can roll back the Dokan to 3.5.1 which has the last version of the Dokan old UI to get the checkbox and allow the vendor contact form. Please check this screenshot https://prnt.sc/ckp3LkUGuzRQ. You can install and activate the WP Rollback plugin to roll back the Dokan to an older version.

    This seems the latest version of the Dokan does not have any support for any external contact form using weForms. Once you are done with allowing the checkbox, you can update the Dokan to the latest version.

    I hope the information will help.

    Cheers!

    Hi @8bit7,

    Recently, we have changed the Admin Settings UI. Previously, the “Vendor Can Contact” option has a checkbox to enable the “Contact Form” on the vendor dashboard.

    Since the integration was done from the weForms side, they need to change the checkbox type to be compatible with the latest Dokan Admin Setting UI.

    However, you can add the below code at the bottom of the child theme’s functions.php file to change the checkbox type to enable the “Contact Form” on the vendor dashboard.

    /* Change the type of Vendor Contact Form enable feature */
    function vendor_contact_form_option_type( $settings_fields ){
        $settings_fields['weforms_integration']['allow_vendor_contact_form']['type'] = 'switcher';
        return $settings_fields;
    }
    add_filter( 'dokan_settings_fields', 'vendor_contact_form_option_type', 99 );

    Thanks!

    Plugin Support Jahidul Hassan Mojumder

    (@jahidulhassan)

    Hi @8bit7,

    Due to inactivity, we are marking this topic as resolved. Feel free to open a new one if you face any further issues.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Weform not displaying’ is closed to new replies.