Contact Bank: WordPress Form Builder for Contact Forms - Version 2.0.78

Version Description

  • Conflict with JetPack discovered & fixed.
  • Optimized Code
Download this release

Release Info

Developer contact-banker
Plugin Icon 128x128 Contact Bank: WordPress Form Builder for Contact Forms
Version 2.0.78
Comparing to
See all releases

Code changes from version 2.0.77 to 2.0.78

assets/css/stylesheet.css CHANGED
@@ -2015,191 +2015,6 @@ legend + .layout-control-group {
2015
  padding-top: 7px;
2016
  }
2017
 
2018
- /* # Modal
2019
- ================================================== */
2020
-
2021
- .modal-open .modal .dropdown-menu {
2022
- z-index: 2050;
2023
- }
2024
-
2025
- .modal-open .modal .dropdown.open {
2026
- *z-index: 2050;
2027
- }
2028
-
2029
- .modal-open .modal .popover {
2030
- z-index: 2060;
2031
- }
2032
-
2033
- .modal-open .modal .tooltip {
2034
- z-index: 2080;
2035
- }
2036
-
2037
- .modal-backdrop {
2038
- position: fixed;
2039
- top: 0;
2040
- right: 0;
2041
- bottom: 0;
2042
- left: 0;
2043
- z-index: 1040;
2044
- background-color: #000000;
2045
- }
2046
-
2047
- .modal-backdrop.fade {
2048
- opacity: 0;
2049
- }
2050
-
2051
- .modal-backdrop, .modal-backdrop.fade.in {
2052
- opacity: 0.3;
2053
- filter: alpha(opacity=30);
2054
- }
2055
-
2056
- .modal {
2057
- position: fixed;
2058
- top: 50%;
2059
- left: 50%;
2060
- z-index: 1050;
2061
- overflow: auto;
2062
- width: 560px;
2063
- margin: -250px 0 0 -280px;
2064
- background: url(../images/backgrounds/bg.png);
2065
- border: 1px solid #c5c5c5;
2066
-
2067
- -webkit-border-radius: 3px;
2068
- -moz-border-radius: 3px;
2069
- border-radius: 3px;
2070
-
2071
- -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
2072
- -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
2073
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
2074
-
2075
- -webkit-background-clip: padding-box;
2076
- -moz-background-clip: padding-box;
2077
- background-clip: padding-box;
2078
-
2079
- }
2080
-
2081
- .modal.fade {
2082
- top: -25%;
2083
- -webkit-transition: opacity .3s linear, top .3s ease-out;
2084
- -moz-transition: opacity .3s linear, top .3s ease-out;
2085
- -o-transition: opacity .3s linear, top .3s ease-out;
2086
- transition: opacity .3s linear, top .3s ease-out;
2087
- }
2088
-
2089
- .modal.fade.in {
2090
- top: 50%;
2091
- z-index: 10000;
2092
- -webkit-border-radius: 5px;
2093
- -moz-border-radius: 5px;
2094
- border-radius: 5px;
2095
- -moz-box-shadow: 0 0 5px #444444;
2096
- -webkit-box-shadow: 0 0 5px #444;
2097
- box-shadow: 0 0 5px #444;
2098
- border: 10px solid rgba(52, 52, 52, .5);
2099
- }
2100
-
2101
- .modal-header {
2102
- padding: 7px 15px;
2103
- -webkit-border-top-right-radius: 3px;
2104
- -webkit-border-top-left-radius: 3px;
2105
- border-bottom: 1px solid #c1c1c1;
2106
- box-shadow: 0 1px 0 #fff;
2107
- -webkit-box-shadow: 0 1px 0 #fff;
2108
- -moz-box-shadow: 0 1px 0 #fff;
2109
-
2110
- background: #fcfcfc;
2111
- background: -moz-linear-gradient(top, #fcfcfc 0%, #ececec 100%);
2112
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #ececec));
2113
- background: -webkit-linear-gradient(top, #fcfcfc 0%, #ececec 100%);
2114
- background: -o-linear-gradient(top, #fcfcfc 0%, #ececec 100%);
2115
- background: -ms-linear-gradient(top, #fcfcfc 0%, #ececec 100%);
2116
- background: linear-gradient(to bottom, #fcfcfc 0%, #ececec 100%);
2117
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fcfcfc", endColorstr="#ececec", GradientType=0);
2118
-
2119
- }
2120
-
2121
- .modal-header .close {
2122
- margin-top: 6px;
2123
- }
2124
-
2125
- .modal-header h5 {
2126
- margin: 0;
2127
- padding: 3px 0 3px 0;
2128
- }
2129
-
2130
- .modal-body {
2131
- overflow-y: auto;
2132
- padding: 15px;
2133
- }
2134
-
2135
- .modal-body .selector, .modal-body .select {
2136
- max-width: 100%;
2137
- width: 100%;
2138
- -webkit-box-sizing: border-box;
2139
- -moz-box-sizing: border-box;
2140
- box-sizing: border-box;
2141
- -ms-box-sizing: border-box;
2142
- height: 30px;
2143
- }
2144
-
2145
- .modal-body .control-group {
2146
- padding: 15px 0;
2147
- }
2148
-
2149
- .modal-body .control-group:first-child {
2150
- padding-top: 0;
2151
- }
2152
-
2153
- .modal-body .control-group:last-child {
2154
- padding-bottom: 0;
2155
- }
2156
-
2157
- .modal-form {
2158
- margin-bottom: 0;
2159
- }
2160
-
2161
- .modal-footer .btn {
2162
- margin-top: 0;
2163
- margin-bottom: 0;
2164
- }
2165
-
2166
- .modal-footer {
2167
- padding: 15px;
2168
- margin-bottom: 0;
2169
- text-align: right;
2170
- background-color: #f5f5f5;
2171
- border-top: 1px solid #ddd;
2172
- *zoom: 1;
2173
-
2174
- -webkit-border-radius: 0 0 3px 3px;
2175
- -moz-border-radius: 0 0 3px 3px;
2176
- border-radius: 0 0 3px 3px;
2177
-
2178
- -webkit-box-shadow: inset 0 1px 0 #ffffff;
2179
- -moz-box-shadow: inset 0 1px 0 #ffffff;
2180
- box-shadow: inset 0 1px 0 #ffffff;
2181
-
2182
- }
2183
-
2184
- .modal-footer:before, .modal-footer:after {
2185
- display: table;
2186
- content: "";
2187
- line-height: 0;
2188
- }
2189
-
2190
- .modal-footer:after {
2191
- clear: both;
2192
- }
2193
-
2194
- .modal-footer .btn + .btn {
2195
- margin-left: 5px;
2196
- margin-bottom: 0;
2197
- }
2198
-
2199
- .modal-footer .btn-group .btn + .btn {
2200
- margin-left: -1px;
2201
- }
2202
-
2203
  .dropup, .dropdown {
2204
  position: relative;
2205
  }
2015
  padding-top: 7px;
2016
  }
2017
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2018
  .dropup, .dropdown {
2019
  position: relative;
2020
  }
contact-bank.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Bank Lite Edition
4
  Plugin URI: http://tech-banker.com
5
  Description: Build Complex, Powerful Contact Forms in Just Seconds. No Programming Knowledge Required! Yeah, It's Really That Easy.
6
  Author: Tech Banker
7
- Version: 2.0.77
8
  Author URI: http://tech-banker.com
9
  */
10
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4
  Plugin URI: http://tech-banker.com
5
  Description: Build Complex, Powerful Contact Forms in Just Seconds. No Programming Knowledge Required! Yeah, It's Really That Easy.
6
  Author: Tech Banker
7
+ Version: 2.0.78
8
  Author URI: http://tech-banker.com
9
  */
10
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: contact-banker, Gallery-Bank
3
  Tags: admin, advanced form, AJAX, best contact form plugin, buddypress, category, comment, comments, contact, contact form, contact form builder, contact form plugin, contact forms, contact me, contact us, contacts, content, easy contact form, easy contact plugin, email, Facebook, feed, feedback, feedback form, form, form builder, forms, gallery, google, image, images, javascript, jquery, link, links, login, media, page, pages, plugin, Post, posts, request, shortcode, sidebar, stats, text, web form, widget, wordpress
4
  Requires at least: 3.3
5
  Tested up to: 4.0
6
- Stable tag: 2.0.77
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -17,7 +17,7 @@ Contact Bank is an ultimate form builder wordpress plugin that lets you create c
17
 
18
  **Contact Bank** has become the **Best Plugin** in the world for WordPress sites to display forms. It has been designed to provide easiness and simplicity to the end user. It is a very simple but fully loaded with 200+ features(**Premium Version**) Plugin.
19
 
20
- [vimeo https://vimeo.com/92488992]
21
 
22
  > #### **Live Demos & Documentation**
23
 
@@ -532,6 +532,16 @@ In order to set Shortcode for a Form, you need to follow these steps :
532
 
533
  == Changelog ==
534
 
 
 
 
 
 
 
 
 
 
 
535
 
536
  = 2.0.76 =
537
 
3
  Tags: admin, advanced form, AJAX, best contact form plugin, buddypress, category, comment, comments, contact, contact form, contact form builder, contact form plugin, contact forms, contact me, contact us, contacts, content, easy contact form, easy contact plugin, email, Facebook, feed, feedback, feedback form, form, form builder, forms, gallery, google, image, images, javascript, jquery, link, links, login, media, page, pages, plugin, Post, posts, request, shortcode, sidebar, stats, text, web form, widget, wordpress
4
  Requires at least: 3.3
5
  Tested up to: 4.0
6
+ Stable tag: 2.0.78
7
  License: GPLv3 or later
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
17
 
18
  **Contact Bank** has become the **Best Plugin** in the world for WordPress sites to display forms. It has been designed to provide easiness and simplicity to the end user. It is a very simple but fully loaded with 200+ features(**Premium Version**) Plugin.
19
 
20
+ https://www.youtube.com/watch?v=yDYlsMhA3G0
21
 
22
  > #### **Live Demos & Documentation**
23
 
532
 
533
  == Changelog ==
534
 
535
+ = 2.0.78 =
536
+
537
+ * Conflict with JetPack discovered & fixed.
538
+ * Optimized Code
539
+
540
+ = 2.0.77 =
541
+
542
+ * Udpated Po & Mo Files for all Languages
543
+ * Updated Css Fixes
544
+ * Optimized Code
545
 
546
  = 2.0.76 =
547
 
views/header.php CHANGED
@@ -75,7 +75,7 @@ jQuery(document).ready(function()
75
  <h4 class="welcome-screen-margin"><?php _e("More Actions", contact_bank); ?></h4>
76
  <ul>
77
  <li>
78
- <a href="http://tech-banker.com/shop/uncategorized/order-customization-wp-contact-bank/" target="_blank" class="welcome-icon">
79
  <?php _e("Plugin Customization", contact_bank); ?>
80
  </a>
81
  </li>
75
  <h4 class="welcome-screen-margin"><?php _e("More Actions", contact_bank); ?></h4>
76
  <ul>
77
  <li>
78
+ <a href="http://tech-banker.com/shop/plugin-customization/order-customization-wp-contact-bank/" target="_blank" class="welcome-icon">
79
  <?php _e("Plugin Customization", contact_bank); ?>
80
  </a>
81
  </li>
views/purchase_pro_version.php CHANGED
@@ -410,7 +410,7 @@ else
410
  class="css3_grid_vertical_align_table"><span
411
  class="css3_grid_vertical_align"><a
412
  href="http://tech-banker.com/shop/wp-contact-bank/contact-bank-eco-edition/"
413
- class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
414
  </ul>
415
  </div>
416
  <div class="column_3 column_3_responsive" style="width: 16%;">
@@ -530,7 +530,7 @@ else
530
  class="css3_grid_vertical_align_table"><span
531
  class="css3_grid_vertical_align"><a
532
  href="http://tech-banker.com/shop/wp-contact-bank/contact-bank-pro-edition/"
533
- class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
534
  </ul>
535
  </div>
536
  <div class="column_4 column_4_responsive" style="width: 16%;">
@@ -650,7 +650,7 @@ else
650
  class="css3_grid_vertical_align_table"><span
651
  class="css3_grid_vertical_align"><a
652
  href="http://tech-banker.com/shop/wp-contact-bank/contact-bank-developer-edition/"
653
- class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
654
  </ul>
655
  </div>
656
  <div class="column_1 column_5_responsive" style="width: 16%;">
@@ -770,7 +770,7 @@ else
770
  class="css3_grid_vertical_align_table"><span
771
  class="css3_grid_vertical_align"><a
772
  href="http://tech-banker.com/shop/wp-contact-bank/contact-bank-extended-edition/"
773
- class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
774
  </ul>
775
  </div>
776
  </div>
410
  class="css3_grid_vertical_align_table"><span
411
  class="css3_grid_vertical_align"><a
412
  href="http://tech-banker.com/shop/wp-contact-bank/contact-bank-eco-edition/"
413
+ target="_blank" class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
414
  </ul>
415
  </div>
416
  <div class="column_3 column_3_responsive" style="width: 16%;">
530
  class="css3_grid_vertical_align_table"><span
531
  class="css3_grid_vertical_align"><a
532
  href="http://tech-banker.com/shop/wp-contact-bank/contact-bank-pro-edition/"
533
+ target="_blank" class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
534
  </ul>
535
  </div>
536
  <div class="column_4 column_4_responsive" style="width: 16%;">
650
  class="css3_grid_vertical_align_table"><span
651
  class="css3_grid_vertical_align"><a
652
  href="http://tech-banker.com/shop/wp-contact-bank/contact-bank-developer-edition/"
653
+ target="_blank" class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
654
  </ul>
655
  </div>
656
  <div class="column_1 column_5_responsive" style="width: 16%;">
770
  class="css3_grid_vertical_align_table"><span
771
  class="css3_grid_vertical_align"><a
772
  href="http://tech-banker.com/shop/wp-contact-bank/contact-bank-extended-edition/"
773
+ target="_blank" class="sign_up sign_up_orange radius3">Order Now!</a></span></span></li>
774
  </ul>
775
  </div>
776
  </div>