Custom Contact Forms - Version 4.5.1

Version Description

  • custom-contact-forms.php - enable_form_access_manager option added and defaulted to disabled
  • custom-contact-forms-admin.php - enable_form_access_manager option added and defaulted to disabled
  • custom-contact-forms-front.php - enable_form_access_manager option added and defaulted to disabled
Download this release

Release Info

Developer tlovett1
Plugin Icon 128x128 Custom Contact Forms
Version 4.5.1
Comparing to
See all releases

Code changes from version 4.5.0 to 4.5.1

custom-contact-forms-admin.php CHANGED
@@ -1020,8 +1020,8 @@ if (!class_exists('CustomContactFormsAdmin')) {
1020
  <a href="javascript:void(0)" class="toollink" title="<?php _e("This field allows you to insert HTML directly after the starting <form> tag.", 'custom-contact-forms'); ?>">(?)</a>
1021
  <label for="objects[<?php echo $i; ?>][values][custom_code]"><?php _e("Custom Code:", 'custom-contact-forms'); ?></label>
1022
  <input name="objects[<?php echo $i; ?>][values][custom_code]" type="text" value="<?php echo $forms[$i]->custom_code; ?>" /></td>
1023
- <a href="javascript:void(0)" class="toollink" title="<?php _e("If you want to show this form to only certain types of users, you can uncheck boxes accordingly. To show this form to anyone, check all the boxes.", 'custom-contact-forms'); ?>">(?)</a>
1024
- <input name="objects[<?php echo $i; ?>][values][form_access_update]" type="hidden" value="1" /></td>
1025
  <label for="form_access">Can View Form:</label>
1026
 
1027
  <?php
@@ -2035,6 +2035,18 @@ the field names you want required by commas. Remember to use underscores instead
2035
  <li class="descrip">
2036
  <?php _e("When a form is filled out incorrectly, this message will be displayed followed by the individual field error messages.", 'custom-contact-forms'); ?>
2037
  </li>
 
 
 
 
 
 
 
 
 
 
 
 
2038
  </ul>
2039
  <ul class="gright">
2040
  <li>
@@ -2100,18 +2112,6 @@ the field names you want required by commas. Remember to use underscores instead
2100
  </option>
2101
  </select>
2102
  </li>
2103
- <li>
2104
- <label for="code_type">
2105
- <?php _e("Use Code Type:", 'custom-contact-forms'); ?>
2106
- </label>
2107
- <select name="settings[code_type]">
2108
- <option>XHTML</option>
2109
- <option <?php if ($admin_options['code_type'] == 'HTML') echo 'selected="selected"'; ?>>HTML</option>
2110
- </select>
2111
- </li>
2112
- <li class="descrip">
2113
- <?php _e("This lets you switch the form code between HTML and XHTML.", 'custom-contact-forms'); ?>
2114
- </li>
2115
  <li>
2116
  <label for="admin_ajax">
2117
  <?php _e("Fancy Admin AJAX Abilities:", 'custom-contact-forms'); ?>
@@ -2120,7 +2120,7 @@ the field names you want required by commas. Remember to use underscores instead
2120
  <option value="1">
2121
  <?php _e("Enabled", 'custom-contact-forms'); ?>
2122
  </option>
2123
- <option <?php if ($admin_options['admin_ajax'] == 0) echo 'selected="selected"'; ?>>
2124
  <?php _e("Disabled", 'custom-contact-forms'); ?>
2125
  </option>
2126
  </select>
@@ -2135,7 +2135,23 @@ the field names you want required by commas. Remember to use underscores instead
2135
  <input name="settings[default_form_bad_permissions]" value="<?php echo $admin_options['default_form_bad_permissions']; ?>" type="text" />
2136
  </li>
2137
  <li class="descrip">
2138
- <?php _e("When someone doesn't have the proper permissions to use a form, this message is displayed in place of the form.", 'custom-contact-forms'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2139
  </li>
2140
  <li class="show-widget"><b>
2141
  <?php _e("Show Sidebar Widget:", 'custom-contact-forms'); ?>
1020
  <a href="javascript:void(0)" class="toollink" title="<?php _e("This field allows you to insert HTML directly after the starting <form> tag.", 'custom-contact-forms'); ?>">(?)</a>
1021
  <label for="objects[<?php echo $i; ?>][values][custom_code]"><?php _e("Custom Code:", 'custom-contact-forms'); ?></label>
1022
  <input name="objects[<?php echo $i; ?>][values][custom_code]" type="text" value="<?php echo $forms[$i]->custom_code; ?>" /></td>
1023
+ <input name="objects[<?php echo $i; ?>][values][form_access_update]" type="hidden" value="1" /></td>
1024
+ <a href="javascript:void(0)" class="toollink" title="<?php _e("If you want to show this form to only certain types of users, you can uncheck boxes accordingly. To show this form to anyone, check all the boxes. This will only take effect if the 'Form Access Manager' is enabled in general settings.", 'custom-contact-forms'); ?>">(?)</a>
1025
  <label for="form_access">Can View Form:</label>
1026
 
1027
  <?php
2035
  <li class="descrip">
2036
  <?php _e("When a form is filled out incorrectly, this message will be displayed followed by the individual field error messages.", 'custom-contact-forms'); ?>
2037
  </li>
2038
+ <li>
2039
+ <label for="code_type">
2040
+ <?php _e("Use Code Type:", 'custom-contact-forms'); ?>
2041
+ </label>
2042
+ <select name="settings[code_type]">
2043
+ <option>XHTML</option>
2044
+ <option <?php if ($admin_options['code_type'] == 'HTML') echo 'selected="selected"'; ?>>HTML</option>
2045
+ </select>
2046
+ </li>
2047
+ <li class="descrip">
2048
+ <?php _e("This lets you switch the form code between HTML and XHTML.", 'custom-contact-forms'); ?>
2049
+ </li>
2050
  </ul>
2051
  <ul class="gright">
2052
  <li>
2112
  </option>
2113
  </select>
2114
  </li>
 
 
 
 
 
 
 
 
 
 
 
 
2115
  <li>
2116
  <label for="admin_ajax">
2117
  <?php _e("Fancy Admin AJAX Abilities:", 'custom-contact-forms'); ?>
2120
  <option value="1">
2121
  <?php _e("Enabled", 'custom-contact-forms'); ?>
2122
  </option>
2123
+ <option value="0" <?php if ($admin_options['admin_ajax'] == 0) echo 'selected="selected"'; ?>>
2124
  <?php _e("Disabled", 'custom-contact-forms'); ?>
2125
  </option>
2126
  </select>
2135
  <input name="settings[default_form_bad_permissions]" value="<?php echo $admin_options['default_form_bad_permissions']; ?>" type="text" />
2136
  </li>
2137
  <li class="descrip">
2138
+ <?php _e("When someone doesn't have the proper permissions to use a form, this message is displayed in place of the form. You control who can view each form with the form access manager which is located inside the form manager.", 'custom-contact-forms'); ?>
2139
+ </li>
2140
+ <li>
2141
+ <label for="enable_form_access_manager">
2142
+ <?php _e("Enabled Form Access Manager:", 'custom-contact-forms'); ?>
2143
+ </label>
2144
+ <select name="settings[enable_form_access_manager]">
2145
+ <option value="0">
2146
+ <?php _e("Disabled", 'custom-contact-forms'); ?>
2147
+ </option>
2148
+ <option value="1" <?php if ($admin_options['enable_form_access_manager'] == 1) echo 'selected="selected"'; ?>>
2149
+ <?php _e("Enabled", 'custom-contact-forms'); ?>
2150
+ </option>
2151
+ </select>
2152
+ </li>
2153
+ <li class="descrip">
2154
+ <?php _e("The form access manager within each form allows you to control who can view your form. However, that will take effect on any of your forms unless this is enabled.", 'custom-contact-forms'); ?>
2155
  </li>
2156
  <li class="show-widget"><b>
2157
  <?php _e("Show Sidebar Widget:", 'custom-contact-forms'); ?>
custom-contact-forms-front.php CHANGED
@@ -50,24 +50,12 @@ if (!class_exists('CustomContactFormsFront')) {
50
  'form' => 0,
51
  ), $atts));
52
  $this_form = parent::selectForm($form);
53
- /*$errors = $this->getAllFormErrors();
54
- if (!empty($errors)) {
55
- $admin_options = parent::getAdminOptions();
56
- $out = '<div id="custom-contact-forms-errors"><p>'.$admin_options['default_form_error_header'].'</p><ul>' . "\n";
57
- $errors = $this->getAllFormErrors();
58
- foreach ($errors as $error) {
59
- $out .= '<li>'.$error.'</li>' . "\n";
60
- }
61
- $err_link = (!empty($this->error_return)) ? '<p><a href="'.$this->error_return.'" title="Go Back">&lt; ' . __('Go Back to Form.', 'custom-contact-forms') . '</a></p>' : '';
62
- return $out . '</ul>' . "\n" . $err_link . '</div>';
63
- } */
64
- if (empty($this_form))
65
- return '';
66
- elseif (!$this->userCanViewForm($this_form)) {
67
- $admin_options = parent::getAdminOptions();
68
  return $admin_options['default_form_bad_permissions'];
69
- } else
70
- return $this->getFormCode($this_form);
71
  }
72
 
73
  function emptyFormErrors() {
50
  'form' => 0,
51
  ), $atts));
52
  $this_form = parent::selectForm($form);
53
+ if (empty($this_form)) return '';
54
+ $admin_options = parent::getAdminOptions();
55
+ if ($admin_options['enable_form_access_manager'] == 1 && !$this->userCanViewForm($this_form))
 
 
 
 
 
 
 
 
 
 
 
 
56
  return $admin_options['default_form_bad_permissions'];
57
+
58
+ return $this->getFormCode($this_form);
59
  }
60
 
61
  function emptyFormErrors() {
custom-contact-forms.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Custom Contact Forms
4
  Plugin URI: http://taylorlovett.com/wordpress-plugins
5
  Description: Guaranteed to be 1000X more customizable and intuitive than Fast Secure Contact Forms or Contact Form 7. Customize every aspect of your forms without any knowledge of CSS: borders, padding, sizes, colors. Ton's of great features. Required fields, form submissions saved to database, captchas, tooltip popovers, unlimited fields/forms/form styles, import/export, use a custom thank you page or built-in popover with a custom success message set for each form.
6
- Version: 4.5.0
7
  Author: Taylor Lovett
8
  Author URI: http://www.taylorlovett.com
9
  */
@@ -53,7 +53,7 @@ if (!class_exists('CustomContactForms')) {
53
  $customcontactAdminOptions = array('show_widget_home' => 1, 'show_widget_pages' => 1, 'show_widget_singles' => 1, 'show_widget_categories' => 1, 'show_widget_archives' => 1, 'default_to_email' => $admin_email, 'default_from_email' => $admin_email, 'default_from_name' => 'Custom Contact Forms', 'default_form_subject' => __('Someone Filled Out Your Contact Form!', 'custom-contact-forms'),
54
  'remember_field_values' => 0, 'author_link' => 1, 'enable_widget_tooltips' => 1, 'mail_function' => 'default', 'form_success_message_title' => __('Successful Form Submission', 'custom-contact-forms'), 'form_success_message' => __('Thank you for filling out our web form. We will get back to you ASAP.', 'custom-contact-forms'), 'enable_jquery' => 1, 'code_type' => 'XHTML',
55
  'show_install_popover' => 0, 'email_form_submissions' => 1, 'enable_dashboard_widget' => 1, 'admin_ajax' => 1, 'smtp_host' => '', 'smtp_encryption' => 'none', 'smtp_authentication' => 0, 'smtp_username' => '', 'smtp_password' => '', 'smtp_port' => '', 'default_form_error_header' => __('You filled out the form incorrectly.', 'custom-contact-forms'),
56
- 'default_form_bad_permissions' => __("You don't have the proper permissions to view this form.", 'custom-contact-forms')); // default general settings
57
  $customcontactOptions = get_option($this->getAdminOptionsName());
58
  if (!empty($customcontactOptions)) {
59
  foreach ($customcontactOptions as $key => $option)
3
  Plugin Name: Custom Contact Forms
4
  Plugin URI: http://taylorlovett.com/wordpress-plugins
5
  Description: Guaranteed to be 1000X more customizable and intuitive than Fast Secure Contact Forms or Contact Form 7. Customize every aspect of your forms without any knowledge of CSS: borders, padding, sizes, colors. Ton's of great features. Required fields, form submissions saved to database, captchas, tooltip popovers, unlimited fields/forms/form styles, import/export, use a custom thank you page or built-in popover with a custom success message set for each form.
6
+ Version: 4.5.1
7
  Author: Taylor Lovett
8
  Author URI: http://www.taylorlovett.com
9
  */
53
  $customcontactAdminOptions = array('show_widget_home' => 1, 'show_widget_pages' => 1, 'show_widget_singles' => 1, 'show_widget_categories' => 1, 'show_widget_archives' => 1, 'default_to_email' => $admin_email, 'default_from_email' => $admin_email, 'default_from_name' => 'Custom Contact Forms', 'default_form_subject' => __('Someone Filled Out Your Contact Form!', 'custom-contact-forms'),
54
  'remember_field_values' => 0, 'author_link' => 1, 'enable_widget_tooltips' => 1, 'mail_function' => 'default', 'form_success_message_title' => __('Successful Form Submission', 'custom-contact-forms'), 'form_success_message' => __('Thank you for filling out our web form. We will get back to you ASAP.', 'custom-contact-forms'), 'enable_jquery' => 1, 'code_type' => 'XHTML',
55
  'show_install_popover' => 0, 'email_form_submissions' => 1, 'enable_dashboard_widget' => 1, 'admin_ajax' => 1, 'smtp_host' => '', 'smtp_encryption' => 'none', 'smtp_authentication' => 0, 'smtp_username' => '', 'smtp_password' => '', 'smtp_port' => '', 'default_form_error_header' => __('You filled out the form incorrectly.', 'custom-contact-forms'),
56
+ 'default_form_bad_permissions' => __("You don't have the proper permissions to view this form.", 'custom-contact-forms'), 'enable_form_access_manager' => 0); // default general settings
57
  $customcontactOptions = get_option($this->getAdminOptionsName());
58
  if (!empty($customcontactOptions)) {
59
  foreach ($customcontactOptions as $key => $option)
import/1295843925ccf-export-13-jan-2011--10-22-35.sql DELETED
@@ -1,362 +0,0 @@
1
- ## Custom Contact Forms Export File
2
- ## It is recommended that you do not edit this file. The order of the
3
- ## queries is important if you intend to use this file through the CCF
4
- ## exporter. The query to update general settings MUST be the last query
5
- ## in this file.
6
-
7
- INSERT INTO `wp_customcontactforms_forms` (id, form_slug, form_title, form_action, form_method, form_fields, submit_button_text, custom_code, form_style, form_email, form_success_message, form_thank_you_page, form_success_title, form_access, form_email_subject, form_email_name) VALUES ('2', 'instant_offer', 'Instant Offer Form', '', 'Post', '1,3,5,', 'Submit', '', '0', 'charlotteforeclosures@gmail.com', 'Thanks for submitting the details about your house. Someone will be contacting you shortly. As stated we take your privacy serious and we will not spam you.', '', 'Great', '', '', '');
8
-
9
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('3', 'fixedEmail', 'Your Email', 'Text', '', '100', '0', 'Please enter your email address.', '', '0', '', '');
10
-
11
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('1', 'captcha', 'Type the numbers.', 'Text', '', '100', '0', 'Type the numbers displayed in the image above.', '', '0', '', '');
12
-
13
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('5', '1name', 'Full Name', 'Text', '', '50', '1', 'Required Information', '', '1', '', '');
14
-
15
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('6', 'email_address', 'Email Address', 'Text', '', '70', '1', 'Required Information', '', '1', '', '');
16
-
17
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('7', 'day_phone', 'Day Phone #: ', 'Text', '', '20', '1', 'Include Area Code', '', '1', '', '');
18
-
19
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('8', 'address', 'Property Address', 'Text', '', '75', '1', 'Required Information', '', '1', '', '');
20
-
21
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('4', 'resetButton', '', 'Reset', 'Reset Form', '0', '0', '', '', '0', '', '');
22
-
23
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('2', 'ishuman', 'Check if you are human.', 'Checkbox', '1', '0', '0', 'This helps us prevent spam.', '', '0', '', '');
24
-
25
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('9', 'city', 'City', 'Text', '', '30', '1', 'Required Information', '', '1', '', '');
26
-
27
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('11', 'state', 'State', 'Dropdown', '50', '0', '1', 'Choose your State', '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,', '1', '', '');
28
-
29
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('12', 'evening_phone', 'Evening #: ', 'Text', '', '20', '1', 'Include Area Code', '', '0', '', '');
30
-
31
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('13', 'time2call', 'When should we call you', 'Text', '', '0', '1', '', '', '0', '', '');
32
-
33
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('14', 'occupied', 'Is the property', 'Dropdown', '3', '0', '1', '', '50,52,51,', '1', '', '');
34
-
35
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('15', 'bedrooms', 'How many bedrooms', 'Text', '', '0', '1', '', '', '1', '', '');
36
-
37
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('16', 'bathrooms', 'How many bathrooms', 'Text', '', '0', '1', '', '', '1', '', '');
38
-
39
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('17', 'sq_ft', 'Approximate Square Feet', 'Text', '', '0', '1', '', '', '1', '', '');
40
-
41
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('18', 'year_built', 'Year built', 'Text', '', '0', '1', 'Just a guess', '', '1', '', '');
42
-
43
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('19', 'garage', 'Garage', 'Dropdown', '', '0', '1', '', '53,54,55,56,', '0', '', '');
44
-
45
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('20', 'property_condition', 'What condition is the property in', 'Dropdown', '', '0', '1', 'Tell us the Condition', '60,57,59,62,58,61,', '1', '', '');
46
-
47
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('21', 'repairs_needed', 'What repairs are needed', 'Textarea', '', '0', '1', '', '', '0', '', '');
48
-
49
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('22', 'carpet', 'Is there carpet', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
50
-
51
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('23', 'wood_floors', 'Is there wood flooring', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
52
-
53
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('24', 'tile_floor', 'What kind of tile flooring', 'Dropdown', '', '0', '1', '', '65,66,67,53,', '0', '', '');
54
-
55
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('25', 'dining_room', 'Is there a dining room', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
56
-
57
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('26', 'bonus_room', 'Is there a bonus room', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
58
-
59
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('27', 'fireplace', 'Do you have a fireplace', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
60
-
61
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('28', 'foundation', 'What type of foundation', 'Dropdown', '', '0', '1', '', '69,68,70,71,', '0', '', '');
62
-
63
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('29', 'deck', 'Do you have a deck', 'Dropdown', '', '0', '1', '', '64,72,73,', '0', '', '');
64
-
65
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('30', 'swimming_pool', 'Do you have a swimming pool', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
66
-
67
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('31', 'fence', 'What kind of fence do you have', 'Dropdown', '', '0', '1', '', '53,73,75,72,', '0', '', '');
68
-
69
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('32', 'type_of_house', 'What is the exterior of your house', 'Dropdown', '', '0', '1', '', '78,73,79,76,81,77,80,', '0', '', '');
70
-
71
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('33', 'central_air', 'What cool air system do you have', 'Dropdown', '', '0', '1', '', '53,87,88,', '0', '', '');
72
-
73
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('34', 'heating', 'What type of heat do you have', 'Dropdown', '', '0', '1', '', '85,82,83,53,86,84,', '0', '', '');
74
-
75
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('35', 'water_system', 'What type of water system do you have', 'Dropdown', '', '0', '1', '', '89,90,91,', '0', '', '');
76
-
77
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('36', 'why_selling', 'Why are you selling your house', 'Dropdown', '', '0', '1', 'Let us know why you are selling', '92,94,95,96,93,97,98,', '1', '', '');
78
-
79
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('37', 'house_value', 'How much do you think your house is worth', 'Text', '', '0', '1', 'Guesstimate', '', '0', '', '');
80
-
81
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('38', 'determine_value', 'How did you come up with your value', 'Dropdown', '', '0', '1', '', '99,102,100,101,', '0', '', '');
82
-
83
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('39', 'asking_price', 'How much do you want for your house', 'Text', '', '0', '1', '', '', '0', '', '');
84
-
85
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('40', '1st_mortgage', 'What is your 1st mortgage balance', 'Text', '', '0', '1', 'Guesstimate is ok', '', '0', '', '');
86
-
87
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('41', '1st_mortgage_pmt', '1st Mortgage Payment', 'Text', '', '0', '1', '', '', '0', '', '');
88
-
89
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('42', 'taxes_insurance', 'Does it include taxes and insurance', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
90
-
91
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('43', 'any_other_mortgages', 'Does the property have any other mortgages', 'Dropdown', '', '0', '1', '', '63,64,', '0', '', '');
92
-
93
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('44', 'combined_mortgage_bal', 'What is the total mortgage balance combined', 'Text', '', '0', '1', '', '', '0', '', '');
94
-
95
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('45', 'will_sell_for_owed', 'Will you sell your house for what you owe', 'Dropdown', '', '0', '1', '', '64,63,103,', '0', '', '');
96
-
97
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('46', 'bottom_line_price', 'What is the least you will take for your house', 'Text', '', '0', '1', '', '', '0', '', '');
98
-
99
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('47', 'lease_option', 'Would you lease option your house or owner finance', 'Dropdown', '', '0', '1', '', '64,63,103,', '0', '', '');
100
-
101
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('48', 'wait_for_equity', 'Do you need some or all cash at closing', 'Dropdown', '', '0', '1', '', '105,104,64,', '0', '', '');
102
-
103
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('49', 'doesnt_sell', 'What happens if your house doesn&#039\\;t sell', 'Text', '', '0', '1', '', '', '0', '', '');
104
-
105
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('50', 'investors', 'If your house doesn&#039\\;t fit something we are looking for, do you want us to run it by our investors', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
106
-
107
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('51', 'liens_judgments', 'Describe any liens and judgments your property may have', 'Text', '', '0', '1', '', '', '0', '', '');
108
-
109
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('52', 'mortgage_current', 'Are your mortgage payments current', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
110
-
111
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('53', 'payments_owed', 'How much in back payments do you owe', 'Text', '', '0', '1', '', '', '0', '', '');
112
-
113
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('54', 'payments_behind', 'How many payments behind are you', 'Text', '', '0', '1', '', '', '0', '', '');
114
-
115
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('55', 'foreclosure_notice', 'Has any lender sent you a foreclosure notice', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
116
-
117
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('56', 'sales_date', 'Has your lender set a sales date', 'Text', '', '0', '1', 'If your lender set a sales date when is it', '', '0', '', '');
118
-
119
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('57', 'listed_agent', 'Is your house listed with an agent', 'Text', '', '0', '1', 'If so when does the listing expire?', '64,63,', '0', '', '');
120
-
121
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('58', 'owner_of_property', 'Are you the owner of this property', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
122
-
123
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('59', 'bankruptcy', 'Are you under bankruptcy protection', 'Dropdown', '', '0', '1', '', '64,63,', '0', '', '');
124
-
125
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('60', 'hear_about', 'How did you find us', 'Dropdown', '', '0', '1', '', '102,108,107,80,106,109,', '0', '', '');
126
-
127
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('61', 'anything_else', 'Explain anything else you think we need to know', 'Textarea', '', '0', '1', '', '', '0', '', '');
128
-
129
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('62', 'email', 'Email Address', 'Text', '', '0', '1', '', '', '0', '', '');
130
-
131
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('63', 'zip_code', 'Zip Code', 'Text', '', '0', '1', '', '', '1', '', '');
132
-
133
- INSERT INTO `wp_customcontactforms_fields` (id, field_slug, field_label, field_type, field_value, field_maxlength, user_field, field_instructions, field_options, field_required, field_class, field_error) VALUES ('64', 'expired', 'When does the listing expire', 'Text', '', '0', '1', '', '', '0', '', '');
134
-
135
- INSERT INTO `wp_customcontactforms_user_data` (id, data_time, data_formid, data_formpage, data_value) VALUES ('1', '1294332983', '2', 'www.buyersofcharlotte.com/fast-response.htm', 's:5:"1name"\\;s:8:"cjuewkpa"\\;s:9:"day_phone"\\;s:14:"gKxUqpSrYMkXRE"\\;s:13:"evening_phone"\\;s:10:"yiKRLumIQD"\\;s:9:"time2call"\\;s:12:"NDiagHvfoOlp"\\;s:5:"email"\\;s:17:"copvbl@vikwqz.com"\\;s:7:"address"\\;s:15:"UmqJzTbTGYiannt"\\;s:4:"city"\\;s:11:"UTIGqvyiUna"\\;s:17:"owner_of_property"\\;s:3:"yes"\\;s:8:"occupied"\\;s:6:"rented"\\;s:8:"bedrooms"\\;s:15:"fzneqCzzpOnZZsM"\\;s:9:"bathrooms"\\;s:13:"AoHAQmNhTkaID"\\;s:5:"sq_ft"\\;s:10:"zvuzFIwauu"\\;s:10:"year_built"\\;s:14:"ZxxVcxNKckqsmr"\\;s:6:"garage"\\;s:4:"1car"\\;s:18:"property_condition"\\;s:4:"poor"\\;s:6:"carpet"\\;s:3:"yes"\\;s:10:"tile_floor"\\;s:7:"ceramic"\\;s:10:"bonus_room"\\;s:3:"yes"\\;s:11:"dining_room"\\;s:3:"yes"\\;s:9:"fireplace"\\;s:3:"yes"\\;s:10:"foundation"\\;s:17:"finished basement"\\;s:4:"deck"\\;s:4:"wood"\\;s:13:"swimming_pool"\\;s:2:"no"\\;s:11:"central_air"\\;s:11:"central air"\\;s:7:"heating"\\;s:7:"furnace"\\;s:12:"water_system"\\;s:11:"septic tank"\\;s:11:"why_selling"\\;s:8:"job lost"\\;s:11:"house_value"\\;s:10:"IBDmJLmuVb"\\;s:15:"determine_value"\\;s:9:"appraiser"\\;s:12:"asking_price"\\;s:9:"xZmkTNXCm"\\;s:12:"1st_mortgage"\\;s:15:"GZDejxcteXTDRCh"\\;s:19:"any_other_mortgages"\\;s:2:"no"\\;s:21:"combined_mortgage_bal"\\;s:10:"nkjHcvJyNy"\\;s:18:"will_sell_for_owed"\\;s:3:"yes"\\;s:17:"bottom_line_price"\\;s:19:"dTwiDrcsXgKwRNPHiqk"\\;s:12:"lease_option"\\;s:3:"yes"\\;s:15:"wait_for_equity"\\;s:4:"some"\\;s:11:"doesnt_sell"\\;s:17:"aqSwijOTsoHibHxGb"\\;s:9:"investors"\\;s:3:"yes"\\;s:13:"payments_owed"\\;s:9:"BKYAcsEmB"\\;s:15:"payments_behind"\\;s:15:"nIcyrAUdcUJJLvW"\\;s:18:"foreclosure_notice"\\;s:3:"yes"\\;s:10:"sales_date"\\;s:19:"nZWMNTyOaiDbBpoAleR"\\;s:12:"listed_agent"\\;s:18:"FPObsbtJAMAwZOAInE"\\;s:7:"expired"\\;s:15:"jQHONXhbXAoPYLU"\\;s:10:"bankruptcy"\\;s:2:"no"\\;s:10:"hear_about"\\;s:5:"other"\\;');
136
-
137
- INSERT INTO `wp_customcontactforms_user_data` (id, data_time, data_formid, data_formpage, data_value) VALUES ('2', '1294333112', '2', 'www.buyersofcharlotte.com/fast-response.htm', 's:5:"1name"\\;s:3:"daf"\\;s:9:"day_phone"\\;s:10:"7049536365"\\;s:13:"evening_phone"\\;s:10:"7049536365"\\;s:9:"time2call"\\;s:0:""\\;s:5:"email"\\;s:31:"charlotteforeclosures@gmail.com"\\;s:7:"address"\\;s:33:"5009 Beatties Ford Rd Ste 107-299"\\;s:4:"city"\\;s:9:"Charlotte"\\;s:5:"state"\\;s:2:"nc"\\;s:8:"zip_code"\\;s:5:"28216"\\;s:17:"owner_of_property"\\;s:2:"no"\\;s:8:"occupied"\\;s:13:"owneroccupied"\\;s:8:"bedrooms"\\;s:1:"3"\\;s:9:"bathrooms"\\;s:1:"2"\\;s:5:"sq_ft"\\;s:4:"1550"\\;s:10:"year_built"\\;s:4:"2004"\\;s:6:"garage"\\;s:4:"none"\\;s:18:"property_condition"\\;s:2:"ok"\\;s:14:"repairs_needed"\\;s:0:""\\;s:11:"wood_floors"\\;s:2:"no"\\;s:6:"carpet"\\;s:2:"no"\\;s:10:"tile_floor"\\;s:8:"vinyl sq"\\;s:10:"bonus_room"\\;s:2:"no"\\;s:11:"dining_room"\\;s:2:"no"\\;s:9:"fireplace"\\;s:2:"no"\\;s:10:"foundation"\\;s:4:"slab"\\;s:4:"deck"\\;s:2:"no"\\;s:13:"swimming_pool"\\;s:2:"no"\\;s:5:"fence"\\;s:4:"none"\\;s:13:"type_of_house"\\;s:5:"block"\\;s:11:"central_air"\\;s:4:"none"\\;s:7:"heating"\\;s:14:"baseboard heat"\\;s:12:"water_system"\\;s:4:"city"\\;s:11:"why_selling"\\;s:6:"moving"\\;s:11:"house_value"\\;s:0:""\\;s:15:"determine_value"\\;s:5:"guess"\\;s:12:"asking_price"\\;s:0:""\\;s:12:"1st_mortgage"\\;s:0:""\\;s:16:"1st_mortgage_pmt"\\;s:0:""\\;s:15:"taxes_insurance"\\;s:2:"no"\\;s:19:"any_other_mortgages"\\;s:3:"yes"\\;s:21:"combined_mortgage_bal"\\;s:0:""\\;s:18:"will_sell_for_owed"\\;s:2:"no"\\;s:17:"bottom_line_price"\\;s:0:""\\;s:12:"lease_option"\\;s:2:"no"\\;s:15:"wait_for_equity"\\;s:3:"all"\\;s:11:"doesnt_sell"\\;s:0:""\\;s:9:"investors"\\;s:2:"no"\\;s:15:"liens_judgments"\\;s:0:""\\;s:16:"mortgage_current"\\;s:2:"no"\\;s:13:"payments_owed"\\;s:0:""\\;s:15:"payments_behind"\\;s:0:""\\;s:18:"foreclosure_notice"\\;s:2:"no"\\;s:10:"sales_date"\\;s:0:""\\;s:12:"listed_agent"\\;s:0:""\\;s:7:"expired"\\;s:0:""\\;s:10:"bankruptcy"\\;s:2:"no"\\;s:10:"hear_about"\\;s:5:"agent"\\;s:13:"anything_else"\\;s:0:""\\;');
138
-
139
- INSERT INTO `wp_customcontactforms_user_data` (id, data_time, data_formid, data_formpage, data_value) VALUES ('3', '1294333112', '2', 'www.buyersofcharlotte.com/fast-response.htm', 's:5:"1name"\\;s:3:"daf"\\;s:9:"day_phone"\\;s:10:"7049536365"\\;s:13:"evening_phone"\\;s:10:"7049536365"\\;s:9:"time2call"\\;s:0:""\\;s:5:"email"\\;s:31:"charlotteforeclosures@gmail.com"\\;s:7:"address"\\;s:33:"5009 Beatties Ford Rd Ste 107-299"\\;s:4:"city"\\;s:9:"Charlotte"\\;s:5:"state"\\;s:2:"nc"\\;s:8:"zip_code"\\;s:5:"28216"\\;s:17:"owner_of_property"\\;s:2:"no"\\;s:8:"occupied"\\;s:13:"owneroccupied"\\;s:8:"bedrooms"\\;s:1:"3"\\;s:9:"bathrooms"\\;s:1:"2"\\;s:5:"sq_ft"\\;s:4:"1550"\\;s:10:"year_built"\\;s:4:"2004"\\;s:6:"garage"\\;s:4:"none"\\;s:18:"property_condition"\\;s:2:"ok"\\;s:14:"repairs_needed"\\;s:0:""\\;s:11:"wood_floors"\\;s:2:"no"\\;s:6:"carpet"\\;s:2:"no"\\;s:10:"tile_floor"\\;s:8:"vinyl sq"\\;s:10:"bonus_room"\\;s:2:"no"\\;s:11:"dining_room"\\;s:2:"no"\\;s:9:"fireplace"\\;s:2:"no"\\;s:10:"foundation"\\;s:4:"slab"\\;s:4:"deck"\\;s:2:"no"\\;s:13:"swimming_pool"\\;s:2:"no"\\;s:5:"fence"\\;s:4:"none"\\;s:13:"type_of_house"\\;s:5:"block"\\;s:11:"central_air"\\;s:4:"none"\\;s:7:"heating"\\;s:14:"baseboard heat"\\;s:12:"water_system"\\;s:4:"city"\\;s:11:"why_selling"\\;s:6:"moving"\\;s:11:"house_value"\\;s:0:""\\;s:15:"determine_value"\\;s:5:"guess"\\;s:12:"asking_price"\\;s:0:""\\;s:12:"1st_mortgage"\\;s:0:""\\;s:16:"1st_mortgage_pmt"\\;s:0:""\\;s:15:"taxes_insurance"\\;s:2:"no"\\;s:19:"any_other_mortgages"\\;s:3:"yes"\\;s:21:"combined_mortgage_bal"\\;s:0:""\\;s:18:"will_sell_for_owed"\\;s:2:"no"\\;s:17:"bottom_line_price"\\;s:0:""\\;s:12:"lease_option"\\;s:2:"no"\\;s:15:"wait_for_equity"\\;s:3:"all"\\;s:11:"doesnt_sell"\\;s:0:""\\;s:9:"investors"\\;s:2:"no"\\;s:15:"liens_judgments"\\;s:0:""\\;s:16:"mortgage_current"\\;s:2:"no"\\;s:13:"payments_owed"\\;s:0:""\\;s:15:"payments_behind"\\;s:0:""\\;s:18:"foreclosure_notice"\\;s:2:"no"\\;s:10:"sales_date"\\;s:0:""\\;s:12:"listed_agent"\\;s:0:""\\;s:7:"expired"\\;s:0:""\\;s:10:"bankruptcy"\\;s:2:"no"\\;s:10:"hear_about"\\;s:5:"agent"\\;s:13:"anything_else"\\;s:0:""\\;');
140
-
141
- INSERT INTO `wp_customcontactforms_user_data` (id, data_time, data_formid, data_formpage, data_value) VALUES ('4', '1294333291', '2', 'www.buyersofcharlotte.com/fast-response.htm', 's:5:"1name"\\;s:3:"daf"\\;s:9:"day_phone"\\;s:10:"7049536365"\\;s:13:"evening_phone"\\;s:10:"7049536365"\\;s:9:"time2call"\\;s:0:""\\;s:5:"email"\\;s:31:"charlotteforeclosures@gmail.com"\\;s:7:"address"\\;s:33:"5009 Beatties Ford Rd Ste 107-299"\\;s:4:"city"\\;s:9:"Charlotte"\\;s:5:"state"\\;s:2:"nc"\\;s:8:"zip_code"\\;s:5:"28216"\\;s:17:"owner_of_property"\\;s:2:"no"\\;s:8:"occupied"\\;s:13:"owneroccupied"\\;s:8:"bedrooms"\\;s:1:"3"\\;s:9:"bathrooms"\\;s:1:"2"\\;s:5:"sq_ft"\\;s:4:"1550"\\;s:10:"year_built"\\;s:4:"2004"\\;s:6:"garage"\\;s:4:"none"\\;s:18:"property_condition"\\;s:2:"ok"\\;s:14:"repairs_needed"\\;s:0:""\\;s:11:"wood_floors"\\;s:2:"no"\\;s:6:"carpet"\\;s:2:"no"\\;s:10:"tile_floor"\\;s:8:"vinyl sq"\\;s:10:"bonus_room"\\;s:2:"no"\\;s:11:"dining_room"\\;s:2:"no"\\;s:9:"fireplace"\\;s:2:"no"\\;s:10:"foundation"\\;s:4:"slab"\\;s:4:"deck"\\;s:2:"no"\\;s:13:"swimming_pool"\\;s:2:"no"\\;s:5:"fence"\\;s:4:"none"\\;s:13:"type_of_house"\\;s:5:"block"\\;s:11:"central_air"\\;s:4:"none"\\;s:7:"heating"\\;s:14:"baseboard heat"\\;s:12:"water_system"\\;s:4:"city"\\;s:11:"why_selling"\\;s:6:"moving"\\;s:11:"house_value"\\;s:0:""\\;s:15:"determine_value"\\;s:5:"guess"\\;s:12:"asking_price"\\;s:0:""\\;s:12:"1st_mortgage"\\;s:0:""\\;s:16:"1st_mortgage_pmt"\\;s:0:""\\;s:15:"taxes_insurance"\\;s:2:"no"\\;s:19:"any_other_mortgages"\\;s:3:"yes"\\;s:21:"combined_mortgage_bal"\\;s:0:""\\;s:18:"will_sell_for_owed"\\;s:2:"no"\\;s:17:"bottom_line_price"\\;s:0:""\\;s:12:"lease_option"\\;s:2:"no"\\;s:15:"wait_for_equity"\\;s:3:"all"\\;s:11:"doesnt_sell"\\;s:0:""\\;s:9:"investors"\\;s:2:"no"\\;s:15:"liens_judgments"\\;s:0:""\\;s:16:"mortgage_current"\\;s:2:"no"\\;s:13:"payments_owed"\\;s:0:""\\;s:15:"payments_behind"\\;s:0:""\\;s:18:"foreclosure_notice"\\;s:2:"no"\\;s:10:"sales_date"\\;s:0:""\\;s:12:"listed_agent"\\;s:0:""\\;s:7:"expired"\\;s:0:""\\;s:10:"bankruptcy"\\;s:2:"no"\\;s:10:"hear_about"\\;s:5:"agent"\\;s:13:"anything_else"\\;s:0:""\\;');
142
-
143
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('2', 'alaska', 'Alaska', 'alaska', '0');
144
-
145
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('1', 'alabama', 'Alabama', 'Alabama', '0');
146
-
147
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('3', 'arizona', 'Arizona', 'arizona', '0');
148
-
149
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('4', 'california', 'California', 'california', '0');
150
-
151
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('5', 'colorado', 'Colorado', 'colorado', '0');
152
-
153
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('6', 'connecticut', 'Connecticut', 'connecticut', '0');
154
-
155
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('7', 'delaware', 'Delaware', 'delaware', '0');
156
-
157
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('8', 'district_of_columbia', 'District of Columbia', 'dc', '0');
158
-
159
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('9', 'florida', 'Florida', 'florida', '0');
160
-
161
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('10', 'georgia', 'Georgia', 'georgia', '0');
162
-
163
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('11', 'hawaii', 'Hawaii', 'hawaii', '0');
164
-
165
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('12', 'idaho', 'Idaho', 'idaho', '0');
166
-
167
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('13', 'illinois', 'Illinois', 'illinois', '0');
168
-
169
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('14', 'indiana', 'Indiana', 'indiana', '0');
170
-
171
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('15', 'iowa', 'Iowa', 'iowa', '0');
172
-
173
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('16', 'kansas', 'Kansas', 'kansas', '0');
174
-
175
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('17', 'kentucky', 'Kentucky', 'kentucky', '0');
176
-
177
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('18', 'louisiana', 'Louisiana', 'la', '0');
178
-
179
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('19', 'maine', 'Maine', 'maine', '0');
180
-
181
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('20', 'maryland', 'Maryland', 'md', '0');
182
-
183
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('21', 'massachusetts', 'Massachusetts', 'ma', '0');
184
-
185
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('22', 'michigan', 'Michigan', 'mi', '0');
186
-
187
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('23', 'minnesota', 'Minnesota', 'mn', '0');
188
-
189
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('24', 'mississippi', 'Mississippi', 'ms', '0');
190
-
191
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('25', 'missouri', 'Missouri', 'mo', '0');
192
-
193
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('26', 'montana', 'Montana', 'mt', '0');
194
-
195
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('27', 'nebraska', 'Nebraska', 'ne', '0');
196
-
197
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('28', 'nevada', 'Nevada', 'nv', '0');
198
-
199
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('29', 'new_hampshire', 'New Hampshire', 'nh', '0');
200
-
201
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('30', 'new_jersey', 'New Jersey', 'nj', '0');
202
-
203
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('31', 'new_mexico', 'New Mexico', 'nm', '0');
204
-
205
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('32', 'new_york', 'New York', 'ny', '0');
206
-
207
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('33', 'north_carolina', 'North Carolina', 'nc', '0');
208
-
209
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('34', 'north_dakota', 'North Dakota', 'nd', '0');
210
-
211
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('35', 'ohio', 'Ohio', 'oh', '0');
212
-
213
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('36', 'oklahoma', 'Oklahoma', 'ok', '0');
214
-
215
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('37', 'pennsylvania', 'Pennsylvania', 'pn', '0');
216
-
217
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('38', 'rhode_island', 'Rhode Islande', 'ri', '0');
218
-
219
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('39', 'south_carolina', 'South Carolina', 'sc', '0');
220
-
221
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('40', 'south_dakota', 'South Dakota', 'sd', '0');
222
-
223
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('41', 'tennessee', 'Tennessee', 'tn', '0');
224
-
225
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('42', 'texas', 'Texas', 'tx', '0');
226
-
227
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('43', 'utah', 'Utah', 'ut', '0');
228
-
229
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('44', 'vermont', 'Vermont', 'vt', '0');
230
-
231
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('45', 'virginia', 'Virginia', 'va', '0');
232
-
233
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('46', 'washington', 'Washington', 'wa', '0');
234
-
235
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('47', 'west_virginia', 'West Virginia', 'wv', '0');
236
-
237
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('48', 'wisconsin', 'Wisconsin', 'wi', '0');
238
-
239
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('49', 'wyoming', 'Wyoming', 'wy', '0');
240
-
241
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('50', 'owner_occupied', 'Owner Occupied', 'owneroccupied', '0');
242
-
243
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('51', 'vacant', 'Vacant', 'vacant', '0');
244
-
245
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('52', 'rented', 'Rented', 'rented', '0');
246
-
247
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('53', 'none', 'None', 'none', '0');
248
-
249
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('54', '1car', '1 Car', '1car', '0');
250
-
251
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('55', '2_car', '2 Car', '2car', '0');
252
-
253
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('56', '3_car', '3 Car +', '3_car+', '0');
254
-
255
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('57', 'good', 'Good', 'good', '0');
256
-
257
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('58', 'poor', 'Poor', 'poor', '0');
258
-
259
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('59', 'great', 'Great', 'great', '0');
260
-
261
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('60', 'ok', 'Ok', 'ok', '0');
262
-
263
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('61', 'demolition', 'Demolition', 'demo', '0');
264
-
265
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('62', 'needs_work', 'Needs Work', 'needs work', '0');
266
-
267
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('63', 'yes', 'Yes', 'yes', '0');
268
-
269
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('64', 'no', 'No', 'no', '0');
270
-
271
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('65', 'vinyl_sq', 'Vinyl Squares', 'vinyl sq', '0');
272
-
273
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('66', 'ceramic', 'Ceramic', 'ceramic', '0');
274
-
275
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('67', 'linoleum', 'Linoleum', 'linoleum', '0');
276
-
277
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('68', 'crawl_space', 'Crawl Space', 'crawl space', '0');
278
-
279
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('69', 'slab', 'Slab', 'slab', '0');
280
-
281
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('70', 'finished_basement', 'Finished Basement', 'finished basement', '0');
282
-
283
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('71', 'unfinished_basement', 'Unfinished Basement', 'unfinished basement', '0');
284
-
285
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('72', 'wood', 'Wood', 'wood', '0');
286
-
287
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('73', 'brick', 'Brick', 'brick', '0');
288
-
289
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('74', 'security', 'Security', 'security', '0');
290
-
291
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('75', 'metal', 'Metal', 'metal', '0');
292
-
293
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('76', 'stucco', 'Stucco', 'stucco', '0');
294
-
295
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('77', 'wood_siding', 'Wood Siding', 'wood siding', '0');
296
-
297
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('78', 'block', 'Block', 'block', '0');
298
-
299
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('79', 'aluminun', 'Aluminum Siding', 'aluminum siding', '0');
300
-
301
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('80', 'other', 'Other', 'other', '0');
302
-
303
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('81', 'vinyl_siding', 'Vinyl Siding', 'vinyl siding', '0');
304
-
305
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('82', 'central_heat', 'Central Heat', 'central heat', '0');
306
-
307
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('83', 'furnace', 'Furnace ', 'furnace', '0');
308
-
309
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('84', 'wood_stove', 'Wood Stove', 'wood stove', '0');
310
-
311
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('85', 'baseboard_heat', 'Baseboard Heat', 'baseboard heat', '0');
312
-
313
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('86', 'radiant', 'Radiant', 'radiant', '0');
314
-
315
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('87', 'central_air', 'Central Air', 'central air', '0');
316
-
317
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('88', 'window_unit', 'Window Unit', 'window unit', '0');
318
-
319
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('89', 'city', 'City', 'city', '0');
320
-
321
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('90', 'septic', 'Septic Tank', 'septic tank', '0');
322
-
323
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('91', 'both', 'Both', 'both', '0');
324
-
325
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('92', 'moving', 'Moving', 'moving', '0');
326
-
327
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('93', 'job_transfer', 'Job Transfer', 'job transfer', '0');
328
-
329
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('94', 'divorce', 'Divorce', 'divorce', '0');
330
-
331
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('95', 'foreclosure', 'Facing Foreclosure', 'foreclosure', '0');
332
-
333
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('96', 'job_lost', 'Job Lost', 'job lost', '0');
334
-
335
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('97', 'tired_landlord', 'Tired Landlord', 'tired landlord', '0');
336
-
337
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('98', 'upgrade', 'Upgrade', 'upgrade', '0');
338
-
339
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('99', 'guess', 'Guessed', 'guess', '0');
340
-
341
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('100', 'appraiser', 'Appraiser', 'appraiser', '0');
342
-
343
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('101', 'neighbor', 'Neighbor', 'neighbor', '0');
344
-
345
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('102', 'agent', 'Real Estate Agent', 'agent', '0');
346
-
347
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('103', 'maybe', 'Maybe', 'maybe', '0');
348
-
349
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('104', 'some', 'Some', 'some', '0');
350
-
351
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('105', 'all', 'All', 'all', '0');
352
-
353
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('106', 'search_engine', 'Search Engine', 'search engine', '0');
354
-
355
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('107', 'friend', 'Friend', 'friend', '0');
356
-
357
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('108', 'classifieds', 'Classified Ad', 'classifieds', '0');
358
-
359
- INSERT INTO `wp_customcontactforms_field_options` (id, option_slug, option_label, option_value, option_dead) VALUES ('109', 'attorney', 'Attorney', 'attorney', '0');
360
-
361
-
362
- UPDATE `wp_options` SET `option_value`='a:25:{s:16:"show_widget_home";i:1;s:17:"show_widget_pages";i:1;s:19:"show_widget_singles";i:1;s:22:"show_widget_categories";i:1;s:20:"show_widget_archives";i:1;s:16:"default_to_email";s:31:"charlotteforeclosures@gmail.com";s:18:"default_from_email";s:31:"charlotteforeclosures@gmail.com";s:20:"default_form_subject";s:37:"Someone Filled Out Your Contact Form!";s:21:"remember_field_values";i:0;s:11:"author_link";i:1;s:22:"enable_widget_tooltips";i:1;s:13:"mail_function";s:7:"default";s:26:"form_success_message_title";s:26:"Successful Form Submission";s:20:"form_success_message";s:69:"Thank you for filling out our web form. We will get back to you ASAP.";s:13:"enable_jquery";i:1;s:9:"code_type";s:5:"XHTML";s:20:"show_install_popover";i:0;s:22:"email_form_submissions";i:1;s:10:"admin_ajax";i:1;s:9:"smtp_host";s:0:"";s:15:"smtp_encryption";s:4:"none";s:19:"smtp_authentication";i:0;s:13:"smtp_username";s:0:"";s:13:"smtp_password";s:0:"";s:9:"smtp_port";s:0:"";}' WHERE `option_name`='customContactFormsAdminOptions';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/custom-contact-forms.mo CHANGED
Binary file
lang/custom-contact-forms.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: custom-contact-forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-01-24 01:22-0500\n"
6
- "PO-Revision-Date: 2011-01-24 01:22-0500\n"
7
  "Last-Translator: Taylor Lovett <sdfds@sfs.com>\n"
8
  "Language-Team: TaylorLovett.com <admin@taylorlovett.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -160,8 +160,8 @@ msgstr ""
160
  #: ../custom-contact-forms-admin.php:868
161
  #: ../custom-contact-forms-admin.php:921
162
  #: ../custom-contact-forms-admin.php:1955
163
- #: ../custom-contact-forms-admin.php:2067
164
- #: ../custom-contact-forms-admin.php:2099
165
  msgid "No"
166
  msgstr ""
167
 
@@ -172,8 +172,8 @@ msgstr ""
172
  #: ../custom-contact-forms-admin.php:868
173
  #: ../custom-contact-forms-admin.php:921
174
  #: ../custom-contact-forms-admin.php:1952
175
- #: ../custom-contact-forms-admin.php:2064
176
- #: ../custom-contact-forms-admin.php:2096
177
  msgid "Yes"
178
  msgstr ""
179
 
@@ -402,7 +402,7 @@ msgstr ""
402
 
403
  #: ../custom-contact-forms-admin.php:744
404
  #: ../custom-contact-forms-admin.php:775
405
- #: ../custom-contact-forms-admin.php:2190
406
  msgid "None"
407
  msgstr ""
408
 
@@ -572,8 +572,8 @@ msgstr ""
572
  msgid "Custom Code:"
573
  msgstr ""
574
 
575
- #: ../custom-contact-forms-admin.php:1023
576
- msgid "If you want to show this form to only certain types of users, you can uncheck boxes accordingly. To show this form to anyone, check all the boxes."
577
  msgstr ""
578
 
579
  #: ../custom-contact-forms-admin.php:1043
@@ -1072,15 +1072,17 @@ msgstr ""
1072
 
1073
  #: ../custom-contact-forms-admin.php:1977
1074
  #: ../custom-contact-forms-admin.php:2020
1075
- #: ../custom-contact-forms-admin.php:2080
1076
  #: ../custom-contact-forms-admin.php:2121
 
1077
  msgid "Enabled"
1078
  msgstr ""
1079
 
1080
  #: ../custom-contact-forms-admin.php:1980
1081
  #: ../custom-contact-forms-admin.php:2023
1082
- #: ../custom-contact-forms-admin.php:2083
1083
  #: ../custom-contact-forms-admin.php:2124
 
1084
  msgid "Disabled"
1085
  msgstr ""
1086
 
@@ -1129,50 +1131,50 @@ msgstr ""
1129
  msgid "When a form is filled out incorrectly, this message will be displayed followed by the individual field error messages."
1130
  msgstr ""
1131
 
1132
- #: ../custom-contact-forms-admin.php:2042
 
 
 
 
 
 
 
 
1133
  msgid "Default Form Success Message Title:"
1134
  msgstr ""
1135
 
1136
- #: ../custom-contact-forms-admin.php:2047
1137
  msgid "If someone fills out a form for which a success message title is not provided and a custom success page is not provided, the plugin will show a popover using this field as the window title."
1138
  msgstr ""
1139
 
1140
- #: ../custom-contact-forms-admin.php:2051
1141
  msgid "Default Form Success Message:"
1142
  msgstr ""
1143
 
1144
- #: ../custom-contact-forms-admin.php:2056
1145
  msgid "If someone fills out a form for which a success message is not provided and a custom success page is not provided, the plugin will show a popover containing this message."
1146
  msgstr ""
1147
 
1148
- #: ../custom-contact-forms-admin.php:2060
1149
  msgid "Remember Field Values:"
1150
  msgstr ""
1151
 
1152
- #: ../custom-contact-forms-admin.php:2072
1153
  msgid "Selecting yes will make form fields remember how they were last filled out."
1154
  msgstr ""
1155
 
1156
- #: ../custom-contact-forms-admin.php:2076
1157
  msgid "Tooltips in Widget:"
1158
  msgstr ""
1159
 
1160
- #: ../custom-contact-forms-admin.php:2088
1161
  msgid "Enabling this shows tooltips containing field instructions on forms in the widget."
1162
  msgstr ""
1163
 
1164
- #: ../custom-contact-forms-admin.php:2092
1165
  msgid "Hide Plugin Author Link in Code:"
1166
  msgstr ""
1167
 
1168
- #: ../custom-contact-forms-admin.php:2105
1169
- msgid "Use Code Type:"
1170
- msgstr ""
1171
-
1172
- #: ../custom-contact-forms-admin.php:2113
1173
- msgid "This lets you switch the form code between HTML and XHTML."
1174
- msgstr ""
1175
-
1176
  #: ../custom-contact-forms-admin.php:2117
1177
  msgid "Fancy Admin AJAX Abilities:"
1178
  msgstr ""
@@ -1186,174 +1188,182 @@ msgid "Default Permissions Error:"
1186
  msgstr ""
1187
 
1188
  #: ../custom-contact-forms-admin.php:2138
1189
- msgid "When someone doesn't have the proper permissions to use a form, this message is displayed in place of the form."
 
 
 
 
 
 
 
 
1190
  msgstr ""
1191
 
1192
- #: ../custom-contact-forms-admin.php:2141
1193
  msgid "Show Sidebar Widget:"
1194
  msgstr ""
1195
 
1196
- #: ../custom-contact-forms-admin.php:2146
1197
  msgid "On Homepage"
1198
  msgstr ""
1199
 
1200
- #: ../custom-contact-forms-admin.php:2150
1201
  msgid "On Pages"
1202
  msgstr ""
1203
 
1204
- #: ../custom-contact-forms-admin.php:2154
1205
  msgid "On Single Posts"
1206
  msgstr ""
1207
 
1208
- #: ../custom-contact-forms-admin.php:2159
1209
  msgid "On Categories"
1210
  msgstr ""
1211
 
1212
- #: ../custom-contact-forms-admin.php:2163
1213
  msgid "On Archives"
1214
  msgstr ""
1215
 
1216
- #: ../custom-contact-forms-admin.php:2167
1217
  msgid "Update"
1218
  msgstr ""
1219
 
1220
- #: ../custom-contact-forms-admin.php:2175
1221
  msgid "Mail Settings"
1222
  msgstr ""
1223
 
1224
- #: ../custom-contact-forms-admin.php:2179
1225
  msgid "There are two ways you can send emails: using the PHP mail() function or using SMTP (secure/insecure). If you choose to use the PHP mail() function you can ignore all the other options. For some people Wordpress's default way of sending mail does not work; if for some reason your mail is being sent you should try the SMTP option."
1226
  msgstr ""
1227
 
1228
- #: ../custom-contact-forms-admin.php:2180
1229
  msgid "* Send My Emails Using the Following:"
1230
  msgstr ""
1231
 
1232
- #: ../custom-contact-forms-admin.php:2182
1233
  msgid "Wordpress Default"
1234
  msgstr ""
1235
 
1236
- #: ../custom-contact-forms-admin.php:2183
1237
  msgid "SMTP"
1238
  msgstr ""
1239
 
1240
- #: ../custom-contact-forms-admin.php:2184
1241
  msgid "(If mail isn't sending, try toggling this option.)"
1242
  msgstr ""
1243
 
1244
- #: ../custom-contact-forms-admin.php:2187
1245
  msgid "SMTP Host:"
1246
  msgstr ""
1247
 
1248
- #: ../custom-contact-forms-admin.php:2188
1249
  msgid "SMTP Port:"
1250
  msgstr ""
1251
 
1252
- #: ../custom-contact-forms-admin.php:2189
1253
  msgid "Encryption:"
1254
  msgstr ""
1255
 
1256
- #: ../custom-contact-forms-admin.php:2191
1257
  msgid "SSL"
1258
  msgstr ""
1259
 
1260
- #: ../custom-contact-forms-admin.php:2192
1261
  msgid "TLS"
1262
  msgstr ""
1263
 
1264
- #: ../custom-contact-forms-admin.php:2196
1265
  msgid "SMTP Authentication:"
1266
  msgstr ""
1267
 
1268
- #: ../custom-contact-forms-admin.php:2196
1269
  msgid "None Needed"
1270
  msgstr ""
1271
 
1272
- #: ../custom-contact-forms-admin.php:2196
1273
  msgid "Use SMTP Username/Password"
1274
  msgstr ""
1275
 
1276
- #: ../custom-contact-forms-admin.php:2197
1277
  msgid "SMTP Username:"
1278
  msgstr ""
1279
 
1280
- #: ../custom-contact-forms-admin.php:2198
1281
  msgid "SMTP Password:"
1282
  msgstr ""
1283
 
1284
- #: ../custom-contact-forms-admin.php:2201
1285
  msgid "Save Mail Sending Options"
1286
  msgstr ""
1287
 
1288
- #: ../custom-contact-forms-admin.php:2208
1289
  msgid "Export"
1290
  msgstr ""
1291
 
1292
- #: ../custom-contact-forms-admin.php:2213
1293
  msgid ""
1294
  "Preforming a Custom Contact Forms export will create a file of the form \n"
1295
  "\t\t\t\t\t\tccf-export-xxxx.sql on your web server. The file created contains SQL that \n"
1296
  "\t\t\t\t\t\twill recreate all the plugin data on any Wordpress installation. After Custom Contact Forms creates the export file, you will be prompted to download it. You can use this file as a backup in case your Wordpress database gets ruined."
1297
  msgstr ""
1298
 
1299
- #: ../custom-contact-forms-admin.php:2217
1300
  msgid "Export All CCF Plugin Content"
1301
  msgstr ""
1302
 
1303
- #: ../custom-contact-forms-admin.php:2223
1304
  msgid "Import"
1305
  msgstr ""
1306
 
1307
- #: ../custom-contact-forms-admin.php:2229
1308
  msgid "Browse to a CCF .sql export file to import Custom Contact Form data from another Wordpress installation to this one. Pressing the 'Clear and Import' button deletes all current data and then imports the selected file; this will not work for merging to data!. Clearing all CCF data before importing prevents any conflicts from occuring. Before you attempt an import, you should always download a backup, by clicking the 'Export All' button."
1309
  msgstr ""
1310
 
1311
- #: ../custom-contact-forms-admin.php:2232
1312
  msgid "Choose What You Want to Use from the Import File:"
1313
  msgstr ""
1314
 
1315
- #: ../custom-contact-forms-admin.php:2238
1316
  msgid "Use General Settings"
1317
  msgstr ""
1318
 
1319
- #: ../custom-contact-forms-admin.php:2244
1320
- #: ../custom-contact-forms-admin.php:2262
1321
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:8
1322
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:231
1323
  msgid "Forms"
1324
  msgstr ""
1325
 
1326
- #: ../custom-contact-forms-admin.php:2250
1327
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:29
1328
  msgid "Form Submissions"
1329
  msgstr ""
1330
 
1331
- #: ../custom-contact-forms-admin.php:2256
1332
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:11
1333
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:52
1334
  msgid "Fields"
1335
  msgstr ""
1336
 
1337
- #: ../custom-contact-forms-admin.php:2268
1338
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:17
1339
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:198
1340
  msgid "Field Options"
1341
  msgstr ""
1342
 
1343
- #: ../custom-contact-forms-admin.php:2274
1344
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:20
1345
  msgid "Styles"
1346
  msgstr ""
1347
 
1348
- #: ../custom-contact-forms-admin.php:2280
1349
  msgid "Choose an Import File:"
1350
  msgstr ""
1351
 
1352
- #: ../custom-contact-forms-admin.php:2284
1353
  msgid "Clear and Import"
1354
  msgstr ""
1355
 
1356
- #: ../custom-contact-forms-admin.php:2286
1357
  msgid "Yes, I want to do this and have created a backup."
1358
  msgstr ""
1359
 
2
  msgstr ""
3
  "Project-Id-Version: custom-contact-forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-01-24 15:40-0500\n"
6
+ "PO-Revision-Date: 2011-01-24 15:40-0500\n"
7
  "Last-Translator: Taylor Lovett <sdfds@sfs.com>\n"
8
  "Language-Team: TaylorLovett.com <admin@taylorlovett.com>\n"
9
  "MIME-Version: 1.0\n"
160
  #: ../custom-contact-forms-admin.php:868
161
  #: ../custom-contact-forms-admin.php:921
162
  #: ../custom-contact-forms-admin.php:1955
163
+ #: ../custom-contact-forms-admin.php:2079
164
+ #: ../custom-contact-forms-admin.php:2111
165
  msgid "No"
166
  msgstr ""
167
 
172
  #: ../custom-contact-forms-admin.php:868
173
  #: ../custom-contact-forms-admin.php:921
174
  #: ../custom-contact-forms-admin.php:1952
175
+ #: ../custom-contact-forms-admin.php:2076
176
+ #: ../custom-contact-forms-admin.php:2108
177
  msgid "Yes"
178
  msgstr ""
179
 
402
 
403
  #: ../custom-contact-forms-admin.php:744
404
  #: ../custom-contact-forms-admin.php:775
405
+ #: ../custom-contact-forms-admin.php:2206
406
  msgid "None"
407
  msgstr ""
408
 
572
  msgid "Custom Code:"
573
  msgstr ""
574
 
575
+ #: ../custom-contact-forms-admin.php:1024
576
+ msgid "If you want to show this form to only certain types of users, you can uncheck boxes accordingly. To show this form to anyone, check all the boxes. This will only take effect if the 'Form Access Manager' is enabled in general settings."
577
  msgstr ""
578
 
579
  #: ../custom-contact-forms-admin.php:1043
1072
 
1073
  #: ../custom-contact-forms-admin.php:1977
1074
  #: ../custom-contact-forms-admin.php:2020
1075
+ #: ../custom-contact-forms-admin.php:2092
1076
  #: ../custom-contact-forms-admin.php:2121
1077
+ #: ../custom-contact-forms-admin.php:2149
1078
  msgid "Enabled"
1079
  msgstr ""
1080
 
1081
  #: ../custom-contact-forms-admin.php:1980
1082
  #: ../custom-contact-forms-admin.php:2023
1083
+ #: ../custom-contact-forms-admin.php:2095
1084
  #: ../custom-contact-forms-admin.php:2124
1085
+ #: ../custom-contact-forms-admin.php:2146
1086
  msgid "Disabled"
1087
  msgstr ""
1088
 
1131
  msgid "When a form is filled out incorrectly, this message will be displayed followed by the individual field error messages."
1132
  msgstr ""
1133
 
1134
+ #: ../custom-contact-forms-admin.php:2040
1135
+ msgid "Use Code Type:"
1136
+ msgstr ""
1137
+
1138
+ #: ../custom-contact-forms-admin.php:2048
1139
+ msgid "This lets you switch the form code between HTML and XHTML."
1140
+ msgstr ""
1141
+
1142
+ #: ../custom-contact-forms-admin.php:2054
1143
  msgid "Default Form Success Message Title:"
1144
  msgstr ""
1145
 
1146
+ #: ../custom-contact-forms-admin.php:2059
1147
  msgid "If someone fills out a form for which a success message title is not provided and a custom success page is not provided, the plugin will show a popover using this field as the window title."
1148
  msgstr ""
1149
 
1150
+ #: ../custom-contact-forms-admin.php:2063
1151
  msgid "Default Form Success Message:"
1152
  msgstr ""
1153
 
1154
+ #: ../custom-contact-forms-admin.php:2068
1155
  msgid "If someone fills out a form for which a success message is not provided and a custom success page is not provided, the plugin will show a popover containing this message."
1156
  msgstr ""
1157
 
1158
+ #: ../custom-contact-forms-admin.php:2072
1159
  msgid "Remember Field Values:"
1160
  msgstr ""
1161
 
1162
+ #: ../custom-contact-forms-admin.php:2084
1163
  msgid "Selecting yes will make form fields remember how they were last filled out."
1164
  msgstr ""
1165
 
1166
+ #: ../custom-contact-forms-admin.php:2088
1167
  msgid "Tooltips in Widget:"
1168
  msgstr ""
1169
 
1170
+ #: ../custom-contact-forms-admin.php:2100
1171
  msgid "Enabling this shows tooltips containing field instructions on forms in the widget."
1172
  msgstr ""
1173
 
1174
+ #: ../custom-contact-forms-admin.php:2104
1175
  msgid "Hide Plugin Author Link in Code:"
1176
  msgstr ""
1177
 
 
 
 
 
 
 
 
 
1178
  #: ../custom-contact-forms-admin.php:2117
1179
  msgid "Fancy Admin AJAX Abilities:"
1180
  msgstr ""
1188
  msgstr ""
1189
 
1190
  #: ../custom-contact-forms-admin.php:2138
1191
+ msgid "When someone doesn't have the proper permissions to use a form, this message is displayed in place of the form. You control who can view each form with the form access manager which is located inside the form manager."
1192
+ msgstr ""
1193
+
1194
+ #: ../custom-contact-forms-admin.php:2142
1195
+ msgid "Enabled Form Access Manager:"
1196
+ msgstr ""
1197
+
1198
+ #: ../custom-contact-forms-admin.php:2154
1199
+ msgid "The form access manager within each form allows you to control who can view your form. However, that will take effect on any of your forms unless this is enabled."
1200
  msgstr ""
1201
 
1202
+ #: ../custom-contact-forms-admin.php:2157
1203
  msgid "Show Sidebar Widget:"
1204
  msgstr ""
1205
 
1206
+ #: ../custom-contact-forms-admin.php:2162
1207
  msgid "On Homepage"
1208
  msgstr ""
1209
 
1210
+ #: ../custom-contact-forms-admin.php:2166
1211
  msgid "On Pages"
1212
  msgstr ""
1213
 
1214
+ #: ../custom-contact-forms-admin.php:2170
1215
  msgid "On Single Posts"
1216
  msgstr ""
1217
 
1218
+ #: ../custom-contact-forms-admin.php:2175
1219
  msgid "On Categories"
1220
  msgstr ""
1221
 
1222
+ #: ../custom-contact-forms-admin.php:2179
1223
  msgid "On Archives"
1224
  msgstr ""
1225
 
1226
+ #: ../custom-contact-forms-admin.php:2183
1227
  msgid "Update"
1228
  msgstr ""
1229
 
1230
+ #: ../custom-contact-forms-admin.php:2191
1231
  msgid "Mail Settings"
1232
  msgstr ""
1233
 
1234
+ #: ../custom-contact-forms-admin.php:2195
1235
  msgid "There are two ways you can send emails: using the PHP mail() function or using SMTP (secure/insecure). If you choose to use the PHP mail() function you can ignore all the other options. For some people Wordpress's default way of sending mail does not work; if for some reason your mail is being sent you should try the SMTP option."
1236
  msgstr ""
1237
 
1238
+ #: ../custom-contact-forms-admin.php:2196
1239
  msgid "* Send My Emails Using the Following:"
1240
  msgstr ""
1241
 
1242
+ #: ../custom-contact-forms-admin.php:2198
1243
  msgid "Wordpress Default"
1244
  msgstr ""
1245
 
1246
+ #: ../custom-contact-forms-admin.php:2199
1247
  msgid "SMTP"
1248
  msgstr ""
1249
 
1250
+ #: ../custom-contact-forms-admin.php:2200
1251
  msgid "(If mail isn't sending, try toggling this option.)"
1252
  msgstr ""
1253
 
1254
+ #: ../custom-contact-forms-admin.php:2203
1255
  msgid "SMTP Host:"
1256
  msgstr ""
1257
 
1258
+ #: ../custom-contact-forms-admin.php:2204
1259
  msgid "SMTP Port:"
1260
  msgstr ""
1261
 
1262
+ #: ../custom-contact-forms-admin.php:2205
1263
  msgid "Encryption:"
1264
  msgstr ""
1265
 
1266
+ #: ../custom-contact-forms-admin.php:2207
1267
  msgid "SSL"
1268
  msgstr ""
1269
 
1270
+ #: ../custom-contact-forms-admin.php:2208
1271
  msgid "TLS"
1272
  msgstr ""
1273
 
1274
+ #: ../custom-contact-forms-admin.php:2212
1275
  msgid "SMTP Authentication:"
1276
  msgstr ""
1277
 
1278
+ #: ../custom-contact-forms-admin.php:2212
1279
  msgid "None Needed"
1280
  msgstr ""
1281
 
1282
+ #: ../custom-contact-forms-admin.php:2212
1283
  msgid "Use SMTP Username/Password"
1284
  msgstr ""
1285
 
1286
+ #: ../custom-contact-forms-admin.php:2213
1287
  msgid "SMTP Username:"
1288
  msgstr ""
1289
 
1290
+ #: ../custom-contact-forms-admin.php:2214
1291
  msgid "SMTP Password:"
1292
  msgstr ""
1293
 
1294
+ #: ../custom-contact-forms-admin.php:2217
1295
  msgid "Save Mail Sending Options"
1296
  msgstr ""
1297
 
1298
+ #: ../custom-contact-forms-admin.php:2224
1299
  msgid "Export"
1300
  msgstr ""
1301
 
1302
+ #: ../custom-contact-forms-admin.php:2229
1303
  msgid ""
1304
  "Preforming a Custom Contact Forms export will create a file of the form \n"
1305
  "\t\t\t\t\t\tccf-export-xxxx.sql on your web server. The file created contains SQL that \n"
1306
  "\t\t\t\t\t\twill recreate all the plugin data on any Wordpress installation. After Custom Contact Forms creates the export file, you will be prompted to download it. You can use this file as a backup in case your Wordpress database gets ruined."
1307
  msgstr ""
1308
 
1309
+ #: ../custom-contact-forms-admin.php:2233
1310
  msgid "Export All CCF Plugin Content"
1311
  msgstr ""
1312
 
1313
+ #: ../custom-contact-forms-admin.php:2239
1314
  msgid "Import"
1315
  msgstr ""
1316
 
1317
+ #: ../custom-contact-forms-admin.php:2245
1318
  msgid "Browse to a CCF .sql export file to import Custom Contact Form data from another Wordpress installation to this one. Pressing the 'Clear and Import' button deletes all current data and then imports the selected file; this will not work for merging to data!. Clearing all CCF data before importing prevents any conflicts from occuring. Before you attempt an import, you should always download a backup, by clicking the 'Export All' button."
1319
  msgstr ""
1320
 
1321
+ #: ../custom-contact-forms-admin.php:2248
1322
  msgid "Choose What You Want to Use from the Import File:"
1323
  msgstr ""
1324
 
1325
+ #: ../custom-contact-forms-admin.php:2254
1326
  msgid "Use General Settings"
1327
  msgstr ""
1328
 
1329
+ #: ../custom-contact-forms-admin.php:2260
1330
+ #: ../custom-contact-forms-admin.php:2278
1331
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:8
1332
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:231
1333
  msgid "Forms"
1334
  msgstr ""
1335
 
1336
+ #: ../custom-contact-forms-admin.php:2266
1337
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:29
1338
  msgid "Form Submissions"
1339
  msgstr ""
1340
 
1341
+ #: ../custom-contact-forms-admin.php:2272
1342
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:11
1343
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:52
1344
  msgid "Fields"
1345
  msgstr ""
1346
 
1347
+ #: ../custom-contact-forms-admin.php:2284
1348
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:17
1349
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:198
1350
  msgid "Field Options"
1351
  msgstr ""
1352
 
1353
+ #: ../custom-contact-forms-admin.php:2290
1354
  #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:20
1355
  msgid "Styles"
1356
  msgstr ""
1357
 
1358
+ #: ../custom-contact-forms-admin.php:2296
1359
  msgid "Choose an Import File:"
1360
  msgstr ""
1361
 
1362
+ #: ../custom-contact-forms-admin.php:2300
1363
  msgid "Clear and Import"
1364
  msgstr ""
1365
 
1366
+ #: ../custom-contact-forms-admin.php:2302
1367
  msgid "Yes, I want to do this and have created a backup."
1368
  msgstr ""
1369
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.taylorlovett.com
4
  Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers
5
  Requires at least: 2.8.1
6
  Tested up to: 3.1
7
- Stable tag: 4.5.0
8
 
9
  Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
10
 
@@ -122,6 +122,10 @@ We are planning to add popover forms and file attachments soon.
122
  Visit http://www.taylorlovett.com/wordpress-plugins for screenshots. Right now all the screenshots are from Version 1, thus are quite out-dated. Install the plugin to see what it looks like. You won't regret it. I promise!
123
 
124
  == Changelog ==
 
 
 
 
125
 
126
  = 4.5.0 =
127
  * custom-contact-forms.php - Saved form submissions manager, form background color added to style manager, import/export feature
4
  Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers
5
  Requires at least: 2.8.1
6
  Tested up to: 3.1
7
+ Stable tag: 4.5.1
8
 
9
  Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
10
 
122
  Visit http://www.taylorlovett.com/wordpress-plugins for screenshots. Right now all the screenshots are from Version 1, thus are quite out-dated. Install the plugin to see what it looks like. You won't regret it. I promise!
123
 
124
  == Changelog ==
125
+ = 4.5.1 =
126
+ * custom-contact-forms.php - enable_form_access_manager option added and defaulted to disabled
127
+ * custom-contact-forms-admin.php - enable_form_access_manager option added and defaulted to disabled
128
+ * custom-contact-forms-front.php - enable_form_access_manager option added and defaulted to disabled
129
 
130
  = 4.5.0 =
131
  * custom-contact-forms.php - Saved form submissions manager, form background color added to style manager, import/export feature