739 comments found.
Why does the form submissions work with my gmail email but not my bluehost emails? http://buildings.techmatemn.com/request-a-quote
Deat, You can check again, all email function on your site is working with Bluehosting email you can use plugin https://wordpress.org/plugins/wp-mail-smtp/screenshots/ to check email sender on your site with Bluehosting ? i think this problem because Email Service on Bluhosting, you can change setting Email sender in Form to SMTP, if it still not working, please 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.
Is there a way to create a button to add the same row repeatedly, so if you are filling out name of people attending an event for an example, they can just simply click “Add name” and it generates another field every time it is clicked. Is this possible?
Sorry, the plugin not support you to create button to add more fields in the form. Because the fields in form need build with Visual Composer.
Best regards.
Hi, this plugin uses an outdated version of font awesome and therefor causes some problems with other plugins. Is there a way to deregister it in functions.php?
Dear, to deregister fontawesome in plugin, please add custom code in file $yourtheme/functions.php
add_action( 'template_redirect', 'dhvc_form_assets',50);
function dhvc_form_assets(){
wp_deregister_style('dhvc-form-font-awesome');
}
Best regards.
Thank you very much! By the way … outstanding plug-in!
i opened a support ticket on your support forum (for over 2 days now), yet no response or reply! do you not offer support on weekends?
Dear @beedoo !! So sorry for delay support in weekend, please check your support ticket on Support forum again. We’re very happy to help you in today.
Best regards.
Backend Editor button not displaying. How do I fix this?
Nevermind, I had to enable it in VC General Settings.
Yes, if you have any questions when use plugin, please kindly contact with our support team on Support Forum to help you.
Best regards.
dccv is properly installed, mail chimp is set up, but when i create a form and want to view it on the webpage i get following error: “404 Page Not Found The requested page cannot be found. Maybe your item has not been approved yet.” can you tell me what is wrong?
Dear, please kindly contact with out support team on http://sitesao.com/support/ your support team will check details problem on your site to help you.
Best regards.
Hi,
I’m using the plugin via the Ultimatum Theme. Two questions. 1: Using “FORM SELECT” I would like to add an additional item to a list that is alphabetical. How do I add the new item to the list and maintain an alphabetical format. Presently the only option I see is to just add it at the bottom or to reenter the list. Can I import a list via a spreadsheet or text format? 2: Within a field, that also has an icon such as an arrow to indicate there are more items in a list or the calendar icon, I noticed the icon area is not clickable and does not activate the field. Is there a way to make the icon also clickable/active?
Dear, the Select field in form only support you add select options when edit short code anh you can order by alphabetical format via edit shott code. Also. we’ll will chec icon in filed again and soon release new version to fix it.
Best regards.
Hi thanks for the plugins but can you explain the operation for rates and Conditional Logic i have tried many things without success I just want 5 stars.
Thanks
Thank you very much!! If you have any questions , please contact with our support team on Support forum our support team always ready to help you.
Best regards.
Hi,
I have purchased this plugin and I have a problem with it, the forms are not going through and not sending any emails. I have chosen the correct settings as well and also in the database I see there are only two entries dhvc_form_entry_note and dhvc_form_entry_entry.
Will appreciate your response at your nearest.
Thanks.
Dear,
Please kindly contact with our support team on Support forum Our support team will check detail problem on your site to help you.
Best regards.
I have two questions 1. my date picker does not show up on the entries and how do I remove this ( Name: ) from my reply email. I just want to see the name only when I get my emails. Also when I get my email the actual date does not show up I only get Arival date:
Dear,
Please kindly contact with our support team on http://sitesao.com/support/ Our support team will check detail problem on your site to help you.
Best regards.
Hi, we use form fo user registration, but how to add new registred user to MyMail list? I cheched a settings, there only Register or Add to MyMail, but we need it working together.
Sorry, the plugin not support you to do it, you can use add custom code to add hook action in ‘do_action(‘dhvc_form_before_processor’,$form_id);’ to add registred user to MyMail. you can contact with our support team on Support forum to help you do it.
Best regards.
is it possible to connect to other email marketing tools (not only mailchimp)
No, the plugin only support Mailchimp and MailPoet.
best regards.
Hello, I bought the DHCV extension forms . I installed the extension , but the Elements do not appear in the Visual Composer control panel.
Thank you kindly tell me how.
Best regards. Dave .
Dear, the form elements not show on your site. please kindly go to page Visual Composer setting and check access role with form elements short codes.
Best regards.
I do not understand what you ask me. Can you be more precise in demarches to achieve.
Thank you.
Please go to admin menu: “Settings – > Visual Composer” and setting User groups access rules: Enable all form shortcode for user group like image
Hi! Can i limit size file to upload?
Dear, the plugin not support config limit size file, plugin use limit size file upload with default config upload_max_size on your hosting. if you need custom it, please contact with our support team on Support forum our support team will check details to help you.
Best regards.
This plugin isn’t working, as I get an error message when I try to preview a form. I also thought it came with templates? This has been frustrating and I need help! Domain: evergreenpando.com
Dear, the plugin not support you to Preview Form post type, You can preview Page have DHVC Form shortcode.
Best regards.
Hi, does it support RTL sites?
Yes, if you have any questions when use plugin , please contact with our support team on Support forum to help you .
Bestregards.
contact form in support place not working….:(
Dear, please contact with our support team on Support forum to help you or you can contact with us via CodeCanyon Profile contact form.
Bestregards.
thanks for reply..i asked in forum… but still no reply ..plz resolve ASAP,...
Dear, i have check your form again, i see the problem you form because your field name is wrong. Please check field name in your form again with note: Field name is required. Please enter single word, no spaces, no start with number. Underscores(_) allowed, (i have add this note in field name when create shortcode, why you still use spaces in field name ? )
Best regards.
Thanks SiteSao for the new update and for the change log.
Yes, if you have any questions, please kindly contact with our support team on Support forum They’re always ready to help you.
Best regards.
Hi! Thx for perfect plugin. Q: Add hook filter year start, year end, max date, min date for Datetime picker filed. How to use it? I didn’t find any new settings in form
function dhvc_form_datepicker_min_date_custom($default,$dhvc_form, $name){
//Change variables $your_form_id and $your_field_name to From ID and Field Name you want add min-date filter.
if($dhvc_form->ID == '$your_form_id' && $name == '$your_field_name'){
return '2012/02/12';//Return Min Date. Date format like in Form Setting Date format.
}
return $default;
}
add_filter('dhvc_form_datepicker_min_date', 'dhvc_form_datepicker_min_date_custom',10,3);
If you can’t do it, please contact with our support team on Support forum to help you.
Best regards.
Hello. Is it possible fill the fields of form from the parameters of url?
Dear, you can use WP hook filter to add value from URL parameters for field in the form, if you can’t do it, please kindly contact with our support on Support forum Our support team always ready to help you.
Best regards.