Code

Discussion on DHVC Form - Wordpress Form for WPBakery Page Builder

Discussion on DHVC Form - Wordpress Form for WPBakery Page Builder

By
Cart 3,624 sales
Recently Updated

SiteSao supports this item

Supported

739 comments found.

Hi Author,

I have a problem. Please help me.

I need to show Form select when I click to Form Select. I try to Conditional Logic but not working You should view my attachment that You will understand.

Problem is here: https://thuyetphapmoi.com/may-nghe-phap-mp3-chat-luong-tot-nhat/

Dear, please kindly check your topic again.

best regards.

I am using my form for only logged in users. Is there a way I can see which logged in user has filled in a form without asking them to write their own name in? Thanks.

Dear, Please kindly contact with our support team on Support forum Our support team will check details to help you.

Best regards.

How do you customize validation error messages?

validating message for “fax” validator = Please enter a valid fax number. For example (123) 456-7890 or 123-456-7890.

I need this to say “Please enter a valid phone number” … how do I customize the validation error message?

Dear, You can customize validate messages in languages file of plugin with text domain ‘dhvc-form’ Or you can use custom code, please add custom code in file $yourtheme/functions.php
function dhvc_form_custom_validate_messages(){
    return array(
                'required'=>__("This field is required.",DHVC_FORM),
                'remote'=>__("Please fix this field.",DHVC_FORM),
                'email'=>__("Please enter a valid email address.",DHVC_FORM),
                'url'=>__("Please enter a valid URL.",DHVC_FORM),
                'date'=>__("Please enter a valid date.",DHVC_FORM),
                'dateISO'=>__("Please enter a valid date (ISO).",DHVC_FORM),
                'number'=>__("Please enter a valid number.",DHVC_FORM),
                'digits'=>__("Please enter only digits.",DHVC_FORM),
                'creditcard'=>__("Please enter a valid credit card number.",DHVC_FORM),
                'equalTo'=>__("Please enter the same value again.",DHVC_FORM),
                'maxlength'=>__("Please enter no more than {0} characters.",DHVC_FORM),
                'minlength'=>__("Please enter at least {0} characters.",DHVC_FORM),
                'rangelength'=>__("Please enter a value between {0} and {1} characters long.",DHVC_FORM),
                'range'=>__("Please enter a value between {0} and {1}.",DHVC_FORM),
                'max'=>__("Please enter a value less than or equal to {0}.",DHVC_FORM),
                'min'=>__("Please enter a value greater than or equal to {0}.",DHVC_FORM),
                'alpha'=>__('Please use letters only (a-z or A-Z) in this field.',DHVC_FORM),
                'alphanum'=>__('Please use only letters (a-z or A-Z) or numbers (0-9) only in this field. No spaces or other characters are allowed.',DHVC_FORM),
                'url'=>__('Please enter a valid URL. Protocol is required (http://, https:// or ftp://)',DHVC_FORM),
                'zip'=>__('Please enter a valid zip code. For example 90602 or 90602-1234.',DHVC_FORM),
                'fax'=>__('Please enter a valid fax number. For example (123) 456-7890 or 123-456-7890.',DHVC_FORM),
                'cpassword'=>__('Please make sure your passwords match.',DHVC_FORM),
                'select'=>__('Please select an option',DHVC_FORM),
                'recaptcha'=>__('Please enter captcha words correctly',DHVC_FORM),
                'captcha'=>__('Please enter captcha words correctly',DHVC_FORM),
                'extension'=>__('Please enter a value with a valid extension.',DHVC_FORM)
            );
}
add_filter('dhvc_form_validate_messages', 'dhvc_form_custom_validate_messages');

After add custom code in file functions.php in your theme, you can change message text in custom functions.

Best regards.

Hi SiteSao, great plugin! Can you help me making the submit button full width? I’m using the verical layout but need the button to adat to the column width. Is it possible?

Please let me know.

Dear, please give for me your problem URL i will check to help you. or you can contact with our support team on Support forum to help you.

best regards.

Hi! Can I configure a form with two use form action? Register and mailchimp in the same form? Thanks

Dear, to do it, you need add custom code to do it, please kindly contact with our support team on Support forum Our support team will check details to help you.

Best regards.

While uploading a file i go C:\fakepath on safari. How do i fix this?

Dear, please kindly contact with our support team on Support forum Our support team will check details to help you.

best regards.

Hi, Is it possible to style the content we get on mail? First, how to get rid of For the second, Is it possible to have the content in vertical view, not the horisontal? best regards aga

Yes, you can change Email content to use HTML format, if you can’t do it, contact with our support team on Support forum Our support team will check details to help you.

Best regards.

I’m attempting to login your support site and it’s not accepting the password I set nor have I received an email to reset my password when I requested it.

Dear, please kindly check your topic again.

Best regards.

Hi, thank you for this plug in. It is possible create a form with check box list with price of products addizionabile and display the total? Like this exemple: http://www.snwebsolution.com/preventivo-sito-web.html

Dear, the plugin not support price field in the form. it’s only support use text field in form.

best regards.

I bought a theme, Ultimatum which comes with plugin, but issue is that, I can’t even see the form options or settings after installing plugin

Dear. please kindly contact with our support team on Support forum or via Profile Contact form Our support team will check details to help you.

best regards.

Hello, nice plugin. Can this be used used with woocommerce checkout page?

How about using on a single product page to work like product-add-on plugin to save names etc. with the product?

Dear, the plugin can’t use with WooCommerce checkout. Also, you can save product datas: name, price with hook filter for ‘dhvc_form_text_default_value’ , If you can’t do it, please kindly contact with our support team on http://sitesao.com/support/ Our support team will check details to help you.

Best regards.

Ok. So do I understand this right that I can add custom form on woocommerce single product page by using Visual Composer? how does it look like in shopping cart after product is added to cart. How is the backend view?

Dear, the plugin NOT support you to use like a add to cart form in Woocommerce, it only support you use like ‘Form to Request a Quote for Product’.

Best regards.

i would like to have round edges….can i get some help here on that?

http://medymatc.wwwls11.a2hosted.com/dev/

Dear, you want round border for form field or button ? please add custom css on your site

for field:
.dhvc-form-flat .dhvc-form-input input, .dhvc-form-flat .dhvc-form-file input[type="text"], .dhvc-form-flat .dhvc-form-captcha input, .dhvc-form-flat .dhvc-form-select select, .dhvc-form-flat .dhvc-form-textarea textarea{
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
for button:
.dhvc-form-submit, .dhvc-form-submit:hover, .dhvc-form-submit:active, .dhvc-form-submit:focus{
padding: 0 25px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}

Best regards.

I have check your site and i can’t see custom css you added on your site ? please kindly check again or you can contact with our support team on http://sitesao.com/support/ our support team will check details to help you.

Best regards,

Hi,

Are you planing to add google map field support, sms and payment gateway(paypal)? and when?

Thank you

Dear, you can use GMap field default included in Visual Composer, also, We haven’t plan update this plugin to support sms and payment gateway(paypal).

Best regards.

Hi. I have a problem with File Form, I do not get the photo attached by email, what I have to do? Thanks and Merry Christmas greetings

Dear, please kindly contact with our support team on Support forum Our support team will check details problem on your site to help you.

Best regards.

Hi. Radio button label and value not working. I added the info and clicked save changes. I go back into the radio settings block and they are back to the default Option0 value0 etc. Anythoughts? Thanks.

Another note: I can’t add more radio buttons or check box options!

Dear, please kindly contact with our support team on Support forum Our support team will check details problem on your site to help you.

Best regards.

Hi,

I am using a REGISTER form and it works just fine. However I want it to also register the First and Last names. Please notice I do NOT need this info in DHVC entry database, I need it in the proper user meta fields.

Can this be done?

Many thanks

Dear, the Register form in plugin like WordPress register form, the mean, it not support add First and Last name when Register user. to do it, you need add custom code in the form, please contact with our support team on Support forum Our support team will check details to help you.

Best regards.

Hello, I’ve just tried the Form Pop-up demo (http://sitesao.com/dhvcform/form-popup/) and i can see a security issue with the login form. Packet sniffer can see the login username and password, which means this data is sent over the network un-encrypted. Is there a fix available for this?

Dear, please kindly contact with us via Profile contact or you can contact with our support team on Support forum Our support team will check details to help you.

Best regards.

Hello, I’ve just tried the Form Pop-up demo (http://sitesao.com/dhvcform/form-popup/) and i can see a security issue with the login form. Packet sniffer can see the login username and password, which means this data is sent over the network un-encrypted. Is there a fix available for this?

Dear, please kindly contact with us via Profile contact or you can contact with our support team on Support forum Our support team will check details to help you.

Best regards.

Thanks for the quick reply. I haven’t purchased this plugin yet. I was just wondering if you were able to fix the security issue on your demo?

Dear, You want tell to problem: can see passwrod in AJAX post data of Modal form ? i think it not is problem because it will redirect after login, like Envato Modal login you can use password when login with modal.

Best regards.

Hi there, is it possible to create a post (custom post type) with your plugin?

Yes, you can insert the form in Custom post type with DHVC Form short code. If you have other questions please kindly contact with our support team on Support forum Our support team always ready to help you.

Best regards.

Hi, I’m having problem saving the form I created, it crashes my site when I clicked save form. I turned it off and my went back to normal. Any idea?

I’m using the7 theme, your plugin keeps my site crashing..Any advice I can do to fix this issue? thanks

Dear, please kindly contact with our support team on Support forum Our support team 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