Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Elana Davis

    (@elanasparkle)

    Hello @8bit7,

    ?Thank you for reaching out to support! I noticed that the UI setting where changed I’m going to get this into an update for weForms

    However, in the mean time 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
    Elana

    Plugin Support Elana Davis

    (@elanasparkle)

    Hello @8bit7,

    Thank you for reaching out to support! Per our support policies I’m going to mark this as resolved please don’t hesitate to reach out if you are still having any issues.

    Thanks
    Elana D.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not working with Dokan’ is closed to new replies.