Code

Discussion on DHVC Form - Wordpress Form for WPBakery Page Builder

Discussion on DHVC Form - Wordpress Form for WPBakery Page Builder

By
Cart 3,623 sales
Recently Updated

SiteSao supports this item

Supported

739 comments found.

The Horizontal Style submit button is bugged when clicked the first time. It changes position from centered to left aligned back and forth until it is submitted. It does this on your test site as well. I am using Chrome and the latest version of this plugin.

Dear, please kindly contact with our support team on http://sitesao.com/support/ Our supporter will check details to help you.

Best regards.

Hi, I’m thinking of buying this plugin but I’d like to know if it’s possible to access the <form> tag anywhere and add an attribute to it. I need to it to integrate with Memberstack that requires me to add ms-signup=”true” to the form tag in order to detect it. Thanks

Yes, the plugin is support add attribute for FORM tag via hook filter.
 add_filter('dhvcform_render_form_output', function($output, $form){
            if($form->ID == 'your_form_id'){
                $output = str_replace('<form', '<form ms-signup="true" ', $output);
            }
            return $output;
        },10,2);
Best regards.

Cool! Where should I put this code then?

Dear, you can put code in file your theme’s functions.php

Hi I’ve checked through previous comments regarding Google Ads integration and you have previously confirmed you have added this to the form builder but can’t locate any tutorials. Is there one available? Happy to extend support for further help setting this up. Many thanks

Dear, if you want add Tracking Form Submissions with Google Analytics.

1. Please finished installing the basic page tracking code for Google Analytics on your site

2. Iserting this JavaScript code snippet into before close body tag of each page. You can edit your theme’s footer.php template, or you can use ‘wp_footer’ action hook from the theme’s functions.php.
add_action('wp_footer', function(){
    ?>
    <script>
    jQuery( document.body )( 'dhvc_form_success', function( ) {
        ga('send', 'event', 'DHVC Form', 'submit');
    }, false );
    </script>
    <?php
});

If you can’t do it, please kindly contact with our support team on http://sitesao.com/support/ Our supporter will check details to help you.

Best regards.

Hi! I’m using this plugin and I love it! Is very easy to use, but I’m having one issue: I built a multi-step form, but every time i click in the button for the next step ir works, but it doesn’t go to the top of the next step (stays in the bottom of the form). How can I make the button go to the top of the next step?

Dear, please kindly contact with our support team on http://sitesao.com/support/ Our support team will check details problem on your site to help you.

Best regards.

Hi! I have a question…

“To set your password, visit the following address:”

Can I set password automatically without confimation from e-mail ?

Thank you for your answer)

Sorry, this plugin not support do it, the plugin work like default WordPress ‘Lost password form’

Best regards.

Hello, i’ve problems when try to export to csv. When I click on export it doesn’t export, it goes to another page and show a 404 error… What i make wrong?

Dear, please kindly contact with our support team on http://sitesao.com/support/ Our supporter will check details problem on your site to help you.

Best regards.

Hi SiteSao, Can DHVC Form be used to send a text message?

Thank you.

Sorry, this plugin not support send a text message.

Best regards.

pre-buy question: this form editor is able to estimate cost througt field option then pass value to paypal for payment?

Dear, It only support estimate cost with field form with simple calculation. It can’t work with conditional logic or dependent fields. You can check demo in http://demo.sitesao.com/dhvcform/paypal-form/

Best regards,

Hi.

How can I add trash to entries? Now when I delete entrie, I can’t remove it if it is my bad.

I try send a message to support forum, but when I try create account I have error: “Sorry, but that item purchase code has already been registered with another account. Please login to that account to continue, or create a new account with another purchase code.” It is strange cause I never send a message to your support before and its is ma first item from your theme forest account… Regards

Hi. I know, but where is a trash? If I delete entrie accidentally, how can I back it?

Yes, we’re will check and add Trash action in next update version.

Best regards.

Ok. Thank you. Regards

Hi got a fatal error, I need your help to resolve the issue

Dear, please kindly contact with our support team on http://sitesao.com/support/ Our supporter will check details to help you.

Best regards.

Hello, how to force redirect visitors to this plugin login form page?

Dear, to do it, you can add custom code in file $yourtheme/functions.php

add_action('template_redirect',function (){
    if(!is_user_logged_in()){
        return wp_redirect('$login_page_url_include_http');
    }
});

best regards.

Hello, how are you doing? I want to build this type of form with this plugin is it possible? this is the form https://www.paperhelp.org/order.html

Sorry, this plugin can’t help you to create Order form like demo.

best regards.

Hi, awesome plugin this. But how do I change the default (and badly worded English) success message from MailChimp which says: “Subscribe to Mailchimp Successful!”

I can see this text in the dhvc-form.po language form, but don’t know if I should change it in there (or which bit to change), but also changing anything in the plugin files is not a good idea when I update in the future. Please advise.

Dear, you can translate this plugin and save language file to folder ‘wp-content/languages/plugins/dhvc-form-{$your_locale}.po’ . When you save it to languages folder of WordPress, it will not lose when you update plugin.

Best regards.

Hi, how do I style multiple-select form field as by default it it too shallow. I have tried finding the declaration for the CSS but nothing seems to work?

Dear, the multiple-select element in form use height is ‘auto’ by default. if you want change it. please kindly contact with our support teamon http://sitesao.com/support/ to help you.

Best regards.

How to add image in select option? Is this possible in your plugin

Sorry, this plugin not support select options with image, it only support checkbox or radio with image options.

Best regards.

I want to use select dropdown option for nationality but all countries are difficult to add one by one, can you suggest how I can add list of all options?

Dear, you can use hook filter to add countries list for form options, please add custom code to file ‘yourtheme/functions.php’ and change variable ‘form_id’ to your form id and ‘field_name’ to your field name

function dhvc_form_select_options_country($options_arr,$dhvc_form,$field_name){
    if( ($dhvc_form->ID == 'form_id' && $field_name == 'field_name')  ){
        $countries = array(
            '' => __( '', 'dhvc-form' ),
            'AF' => __( 'Afghanistan', 'dhvc-form' ),
            'AX' => __( 'Åland Islands', 'dhvc-form' ),
            'AL' => __( 'Albania', 'dhvc-form' ),
            'DZ' => __( 'Algeria', 'dhvc-form' ),
            'AD' => __( 'Andorra', 'dhvc-form' ),
            'AO' => __( 'Angola', 'dhvc-form' ),
            'AI' => __( 'Anguilla', 'dhvc-form' ),
            'AQ' => __( 'Antarctica', 'dhvc-form' ),
            'AG' => __( 'Antigua and Barbuda', 'dhvc-form' ),
            'AR' => __( 'Argentina', 'dhvc-form' ),
            'AM' => __( 'Armenia', 'dhvc-form' ),
            'AW' => __( 'Aruba', 'dhvc-form' ),
            'AU' => __( 'Australia', 'dhvc-form' ),
            'AT' => __( 'Austria', 'dhvc-form' ),
            'AZ' => __( 'Azerbaijan', 'dhvc-form' ),
            'BS' => __( 'Bahamas', 'dhvc-form' ),
            'BH' => __( 'Bahrain', 'dhvc-form' ),
            'BD' => __( 'Bangladesh', 'dhvc-form' ),
            'BB' => __( 'Barbados', 'dhvc-form' ),
            'BY' => __( 'Belarus', 'dhvc-form' ),
            'BE' => __( 'Belgium', 'dhvc-form' ),
            'PW' => __( 'Belau', 'dhvc-form' ),
            'BZ' => __( 'Belize', 'dhvc-form' ),
            'BJ' => __( 'Benin', 'dhvc-form' ),
            'BM' => __( 'Bermuda', 'dhvc-form' ),
            'BT' => __( 'Bhutan', 'dhvc-form' ),
            'BO' => __( 'Bolivia', 'dhvc-form' ),
            'BQ' => __( 'Bonaire, Saint Eustatius and Saba', 'dhvc-form' ),
            'BA' => __( 'Bosnia and Herzegovina', 'dhvc-form' ),
            'BW' => __( 'Botswana', 'dhvc-form' ),
            'BV' => __( 'Bouvet Island', 'dhvc-form' ),
            'BR' => __( 'Brazil', 'dhvc-form' ),
            'IO' => __( 'British Indian Ocean Territory', 'dhvc-form' ),
            'VG' => __( 'British Virgin Islands', 'dhvc-form' ),
            'BN' => __( 'Brunei', 'dhvc-form' ),
            'BG' => __( 'Bulgaria', 'dhvc-form' ),
            'BF' => __( 'Burkina Faso', 'dhvc-form' ),
            'BI' => __( 'Burundi', 'dhvc-form' ),
            'KH' => __( 'Cambodia', 'dhvc-form' ),
            'CM' => __( 'Cameroon', 'dhvc-form' ),
            'CA' => __( 'Canada', 'dhvc-form' ),
            'CV' => __( 'Cape Verde', 'dhvc-form' ),
            'KY' => __( 'Cayman Islands', 'dhvc-form' ),
            'CF' => __( 'Central African Republic', 'dhvc-form' ),
            'TD' => __( 'Chad', 'dhvc-form' ),
            'CL' => __( 'Chile', 'dhvc-form' ),
            'CN' => __( 'China', 'dhvc-form' ),
            'CX' => __( 'Christmas Island', 'dhvc-form' ),
            'CC' => __( 'Cocos (Keeling) Islands', 'dhvc-form' ),
            'CO' => __( 'Colombia', 'dhvc-form' ),
            'KM' => __( 'Comoros', 'dhvc-form' ),
            'CG' => __( 'Congo (Brazzaville)', 'dhvc-form' ),
            'CD' => __( 'Congo (Kinshasa)', 'dhvc-form' ),
            'CK' => __( 'Cook Islands', 'dhvc-form' ),
            'CR' => __( 'Costa Rica', 'dhvc-form' ),
            'HR' => __( 'Croatia', 'dhvc-form' ),
            'CU' => __( 'Cuba', 'dhvc-form' ),
            'CW' => __( 'CuraÇao', 'dhvc-form' ),
            'CY' => __( 'Cyprus', 'dhvc-form' ),
            'CZ' => __( 'Czech Republic', 'dhvc-form' ),
            'DK' => __( 'Denmark', 'dhvc-form' ),
            'DJ' => __( 'Djibouti', 'dhvc-form' ),
            'DM' => __( 'Dominica', 'dhvc-form' ),
            'DO' => __( 'Dominican Republic', 'dhvc-form' ),
            'EC' => __( 'Ecuador', 'dhvc-form' ),
            'EG' => __( 'Egypt', 'dhvc-form' ),
            'SV' => __( 'El Salvador', 'dhvc-form' ),
            'GQ' => __( 'Equatorial Guinea', 'dhvc-form' ),
            'ER' => __( 'Eritrea', 'dhvc-form' ),
            'EE' => __( 'Estonia', 'dhvc-form' ),
            'ET' => __( 'Ethiopia', 'dhvc-form' ),
            'FK' => __( 'Falkland Islands', 'dhvc-form' ),
            'FO' => __( 'Faroe Islands', 'dhvc-form' ),
            'FJ' => __( 'Fiji', 'dhvc-form' ),
            'FI' => __( 'Finland', 'dhvc-form' ),
            'FR' => __( 'France', 'dhvc-form' ),
            'GF' => __( 'French Guiana', 'dhvc-form' ),
            'PF' => __( 'French Polynesia', 'dhvc-form' ),
            'TF' => __( 'French Southern Territories', 'dhvc-form' ),
            'GA' => __( 'Gabon', 'dhvc-form' ),
            'GM' => __( 'Gambia', 'dhvc-form' ),
            'GE' => __( 'Georgia', 'dhvc-form' ),
            'DE' => __( 'Germany', 'dhvc-form' ),
            'GH' => __( 'Ghana', 'dhvc-form' ),
            'GI' => __( 'Gibraltar', 'dhvc-form' ),
            'GR' => __( 'Greece', 'dhvc-form' ),
            'GL' => __( 'Greenland', 'dhvc-form' ),
            'GD' => __( 'Grenada', 'dhvc-form' ),
            'GP' => __( 'Guadeloupe', 'dhvc-form' ),
            'GT' => __( 'Guatemala', 'dhvc-form' ),
            'GG' => __( 'Guernsey', 'dhvc-form' ),
            'GN' => __( 'Guinea', 'dhvc-form' ),
            'GW' => __( 'Guinea-Bissau', 'dhvc-form' ),
            'GY' => __( 'Guyana', 'dhvc-form' ),
            'HT' => __( 'Haiti', 'dhvc-form' ),
            'HM' => __( 'Heard Island and McDonald Islands', 'dhvc-form' ),
            'HN' => __( 'Honduras', 'dhvc-form' ),
            'HK' => __( 'Hong Kong', 'dhvc-form' ),
            'HU' => __( 'Hungary', 'dhvc-form' ),
            'IS' => __( 'Iceland', 'dhvc-form' ),
            'IN' => __( 'India', 'dhvc-form' ),
            'ID' => __( 'Indonesia', 'dhvc-form' ),
            'IR' => __( 'Iran', 'dhvc-form' ),
            'IQ' => __( 'Iraq', 'dhvc-form' ),
            'IE' => __( 'Republic of Ireland', 'dhvc-form' ),
            'IM' => __( 'Isle of Man', 'dhvc-form' ),
            'IL' => __( 'Israel', 'dhvc-form' ),
            'IT' => __( 'Italy', 'dhvc-form' ),
            'CI' => __( 'Ivory Coast', 'dhvc-form' ),
            'JM' => __( 'Jamaica', 'dhvc-form' ),
            'JP' => __( 'Japan', 'dhvc-form' ),
            'JE' => __( 'Jersey', 'dhvc-form' ),
            'JO' => __( 'Jordan', 'dhvc-form' ),
            'KZ' => __( 'Kazakhstan', 'dhvc-form' ),
            'KE' => __( 'Kenya', 'dhvc-form' ),
            'KI' => __( 'Kiribati', 'dhvc-form' ),
            'KW' => __( 'Kuwait', 'dhvc-form' ),
            'KG' => __( 'Kyrgyzstan', 'dhvc-form' ),
            'LA' => __( 'Laos', 'dhvc-form' ),
            'LV' => __( 'Latvia', 'dhvc-form' ),
            'LB' => __( 'Lebanon', 'dhvc-form' ),
            'LS' => __( 'Lesotho', 'dhvc-form' ),
            'LR' => __( 'Liberia', 'dhvc-form' ),
            'LY' => __( 'Libya', 'dhvc-form' ),
            'LI' => __( 'Liechtenstein', 'dhvc-form' ),
            'LT' => __( 'Lithuania', 'dhvc-form' ),
            'LU' => __( 'Luxembourg', 'dhvc-form' ),
            'MO' => __( 'Macao S.A.R., China', 'dhvc-form' ),
            'MK' => __( 'Macedonia', 'dhvc-form' ),
            'MG' => __( 'Madagascar', 'dhvc-form' ),
            'MW' => __( 'Malawi', 'dhvc-form' ),
            'MY' => __( 'Malaysia', 'dhvc-form' ),
            'MV' => __( 'Maldives', 'dhvc-form' ),
            'ML' => __( 'Mali', 'dhvc-form' ),
            'MT' => __( 'Malta', 'dhvc-form' ),
            'MH' => __( 'Marshall Islands', 'dhvc-form' ),
            'MQ' => __( 'Martinique', 'dhvc-form' ),
            'MR' => __( 'Mauritania', 'dhvc-form' ),
            'MU' => __( 'Mauritius', 'dhvc-form' ),
            'YT' => __( 'Mayotte', 'dhvc-form' ),
            'MX' => __( 'Mexico', 'dhvc-form' ),
            'FM' => __( 'Micronesia', 'dhvc-form' ),
            'MD' => __( 'Moldova', 'dhvc-form' ),
            'MC' => __( 'Monaco', 'dhvc-form' ),
            'MN' => __( 'Mongolia', 'dhvc-form' ),
            'ME' => __( 'Montenegro', 'dhvc-form' ),
            'MS' => __( 'Montserrat', 'dhvc-form' ),
            'MA' => __( 'Morocco', 'dhvc-form' ),
            'MZ' => __( 'Mozambique', 'dhvc-form' ),
            'MM' => __( 'Myanmar', 'dhvc-form' ),
            'NA' => __( 'Namibia', 'dhvc-form' ),
            'NR' => __( 'Nauru', 'dhvc-form' ),
            'NP' => __( 'Nepal', 'dhvc-form' ),
            'NL' => __( 'Netherlands', 'dhvc-form' ),
            'AN' => __( 'Netherlands Antilles', 'dhvc-form' ),
            'NC' => __( 'New Caledonia', 'dhvc-form' ),
            'NZ' => __( 'New Zealand', 'dhvc-form' ),
            'NI' => __( 'Nicaragua', 'dhvc-form' ),
            'NE' => __( 'Niger', 'dhvc-form' ),
            'NG' => __( 'Nigeria', 'dhvc-form' ),
            'NU' => __( 'Niue', 'dhvc-form' ),
            'NF' => __( 'Norfolk Island', 'dhvc-form' ),
            'KP' => __( 'North Korea', 'dhvc-form' ),
            'NO' => __( 'Norway', 'dhvc-form' ),
            'OM' => __( 'Oman', 'dhvc-form' ),
            'PK' => __( 'Pakistan', 'dhvc-form' ),
            'PS' => __( 'Palestinian Territory', 'dhvc-form' ),
            'PA' => __( 'Panama', 'dhvc-form' ),
            'PG' => __( 'Papua New Guinea', 'dhvc-form' ),
            'PY' => __( 'Paraguay', 'dhvc-form' ),
            'PE' => __( 'Peru', 'dhvc-form' ),
            'PH' => __( 'Philippines', 'dhvc-form' ),
            'PN' => __( 'Pitcairn', 'dhvc-form' ),
            'PL' => __( 'Poland', 'dhvc-form' ),
            'PT' => __( 'Portugal', 'dhvc-form' ),
            'QA' => __( 'Qatar', 'dhvc-form' ),
            'RE' => __( 'Reunion', 'dhvc-form' ),
            'RO' => __( 'Romania', 'dhvc-form' ),
            'RU' => __( 'Russia', 'dhvc-form' ),
            'RW' => __( 'Rwanda', 'dhvc-form' ),
            'BL' => __( 'Saint Barthélemy', 'dhvc-form' ),
            'SH' => __( 'Saint Helena', 'dhvc-form' ),
            'KN' => __( 'Saint Kitts and Nevis', 'dhvc-form' ),
            'LC' => __( 'Saint Lucia', 'dhvc-form' ),
            'MF' => __( 'Saint Martin (French part)', 'dhvc-form' ),
            'SX' => __( 'Saint Martin (Dutch part)', 'dhvc-form' ),
            'PM' => __( 'Saint Pierre and Miquelon', 'dhvc-form' ),
            'VC' => __( 'Saint Vincent and the Grenadines', 'dhvc-form' ),
            'SM' => __( 'San Marino', 'dhvc-form' ),
            'ST' => __( 'São Tomé and Príncipe', 'dhvc-form' ),
            'SA' => __( 'Saudi Arabia', 'dhvc-form' ),
            'SN' => __( 'Senegal', 'dhvc-form' ),
            'RS' => __( 'Serbia', 'dhvc-form' ),
            'SC' => __( 'Seychelles', 'dhvc-form' ),
            'SL' => __( 'Sierra Leone', 'dhvc-form' ),
            'SG' => __( 'Singapore', 'dhvc-form' ),
            'SK' => __( 'Slovakia', 'dhvc-form' ),
            'SI' => __( 'Slovenia', 'dhvc-form' ),
            'SB' => __( 'Solomon Islands', 'dhvc-form' ),
            'SO' => __( 'Somalia', 'dhvc-form' ),
            'ZA' => __( 'South Africa', 'dhvc-form' ),
            'GS' => __( 'South Georgia/Sandwich Islands', 'dhvc-form' ),
            'KR' => __( 'South Korea', 'dhvc-form' ),
            'SS' => __( 'South Sudan', 'dhvc-form' ),
            'ES' => __( 'Spain', 'dhvc-form' ),
            'LK' => __( 'Sri Lanka', 'dhvc-form' ),
            'SD' => __( 'Sudan', 'dhvc-form' ),
            'SR' => __( 'Suriname', 'dhvc-form' ),
            'SJ' => __( 'Svalbard and Jan Mayen', 'dhvc-form' ),
            'SZ' => __( 'Swaziland', 'dhvc-form' ),
            'SE' => __( 'Sweden', 'dhvc-form' ),
            'CH' => __( 'Switzerland', 'dhvc-form' ),
            'SY' => __( 'Syria', 'dhvc-form' ),
            'TW' => __( 'Taiwan', 'dhvc-form' ),
            'TJ' => __( 'Tajikistan', 'dhvc-form' ),
            'TZ' => __( 'Tanzania', 'dhvc-form' ),
            'TH' => __( 'Thailand', 'dhvc-form' ),
            'TL' => __( 'Timor-Leste', 'dhvc-form' ),
            'TG' => __( 'Togo', 'dhvc-form' ),
            'TK' => __( 'Tokelau', 'dhvc-form' ),
            'TO' => __( 'Tonga', 'dhvc-form' ),
            'TT' => __( 'Trinidad and Tobago', 'dhvc-form' ),
            'TN' => __( 'Tunisia', 'dhvc-form' ),
            'TR' => __( 'Turkey', 'dhvc-form' ),
            'TM' => __( 'Turkmenistan', 'dhvc-form' ),
            'TC' => __( 'Turks and Caicos Islands', 'dhvc-form' ),
            'TV' => __( 'Tuvalu', 'dhvc-form' ),
            'UG' => __( 'Uganda', 'dhvc-form' ),
            'UA' => __( 'Ukraine', 'dhvc-form' ),
            'AE' => __( 'United Arab Emirates', 'dhvc-form' ),
            'GB' => __( 'United Kingdom (UK)', 'dhvc-form' ),
            'US' => __( 'United States (US)', 'dhvc-form' ),
            'UY' => __( 'Uruguay', 'dhvc-form' ),
            'UZ' => __( 'Uzbekistan', 'dhvc-form' ),
            'VU' => __( 'Vanuatu', 'dhvc-form' ),
            'VA' => __( 'Vatican', 'dhvc-form' ),
            'VE' => __( 'Venezuela', 'dhvc-form' ),
            'VN' => __( 'Vietnam', 'dhvc-form' ),
            'WF' => __( 'Wallis and Futuna', 'dhvc-form' ),
            'EH' => __( 'Western Sahara', 'dhvc-form' ),
            'WS' => __( 'Western Samoa', 'dhvc-form' ),
            'YE' => __( 'Yemen', 'dhvc-form' ),
            'ZM' => __( 'Zambia', 'dhvc-form' ),
            'ZW' => __( 'Zimbabwe', 'dhvc-form' )
        );
        $options_arr = array();
        foreach ($countries as $country){
            $country_obj = new stdClass();
            $country_obj->label = esc_html($country);
            $country_obj->value = esc_attr($country);
            $options_arr[] = $country_obj;
        }
    }
    return $options_arr;
}
add_filter('dhvc_form_select_options', 'dhvc_form_select_options_country',10,3);

Best regards.

Hi, can it works with this email plug in : https://it.wordpress.org/plugins/newsletter/ ?

Visual form works actually with just with mailpoet 2. Is it possible to exend integration with mailpoet 3?

Dear, please kindly update DHVC Form on your site to latest version 2.2.31. the latest version is support mailpoet 3

Best regards.

Another Bug is: when set a conditional logic to a radio element on step 1 and say him to hide element x on step 2 they completly hide the step 2 content! no way to make a conditional logic on multisteps. Can u plz fix that as fast as possible because iam waiting to go online but with this problem i cant make the form working.

Dear, please kindly check your topic again.

best regards.

Hi there,

first of all thx this nice Form!

But i found a Bug. when recaptcha is set on the last step of an multistep form the form does not continue to next steps and always says a field is requierd.

Can u fix that?

Dear, please kindly check your topic again.

best regards.

Need to send an email to myself with one of the form fields adding city and state the user entered. Any way to do this?

Dear, please kindly contact with our support team on http://sitesao.com/support/ our supporter will check details to help you.

Best regards.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey