Version Description
- Few Bugs Fixed Related to Frontend
Download this release
Release Info
Developer | contact-banker |
Plugin | Contact Bank: WordPress Form Builder for Contact Forms |
Version | 2.0.45 |
Comparing to | |
See all releases |
Code changes from version 2.0.44 to 2.0.45
- contact-bank.php +1 -1
- frontend_views/contact_bank_forms.php +6 -6
- readme.txt +5 -1
contact-bank.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Bank Standard 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.
|
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.45
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
frontend_views/contact_bank_forms.php
CHANGED
@@ -359,8 +359,8 @@ $forms_email_settings = $wpdb->get_row
|
|
359 |
<?php
|
360 |
break;
|
361 |
case 4:
|
362 |
-
$ddl_values = unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_dropdown_option_val"]);
|
363 |
-
|
364 |
?>
|
365 |
<div class="layout-controls layout_according_label_position hovertip" data-original-title="<?php echo $control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_tooltip_txt"]; ?>">
|
366 |
<select class=" input_control <?php echo $layout_settings_array[$form_id]["input_field_input_size"]; ?>" type="select" id="ux_select_default_<?php echo $form_fields[$flag]->column_dynamicId; ?>"
|
@@ -380,8 +380,8 @@ $forms_email_settings = $wpdb->get_row
|
|
380 |
<?php
|
381 |
break;
|
382 |
case 5:
|
383 |
-
$chk_values = unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_checkbox_option_val"]);
|
384 |
-
|
385 |
if(count($chk_ids) > 0)
|
386 |
{
|
387 |
?>
|
@@ -415,8 +415,8 @@ $forms_email_settings = $wpdb->get_row
|
|
415 |
}
|
416 |
break;
|
417 |
case 6:
|
418 |
-
$rdl_values = unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_radio_option_val"]);
|
419 |
-
|
420 |
if(count($rdl_ids) > 0)
|
421 |
{
|
422 |
?>
|
359 |
<?php
|
360 |
break;
|
361 |
case 4:
|
362 |
+
$ddl_values = count( unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_dropdown_option_val"])) > 0 ? explode(",",unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_dropdown_option_val"])) : "";
|
363 |
+
$ddl_ids = count(unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_dropdown_option_id"])) > 0 ? explode(",",unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_dropdown_option_id"])) : "";
|
364 |
?>
|
365 |
<div class="layout-controls layout_according_label_position hovertip" data-original-title="<?php echo $control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_tooltip_txt"]; ?>">
|
366 |
<select class=" input_control <?php echo $layout_settings_array[$form_id]["input_field_input_size"]; ?>" type="select" id="ux_select_default_<?php echo $form_fields[$flag]->column_dynamicId; ?>"
|
380 |
<?php
|
381 |
break;
|
382 |
case 5:
|
383 |
+
$chk_values = count( unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_checkbox_option_val"])) > 0 ? explode(",",unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_checkbox_option_val"])) : "";
|
384 |
+
$chk_ids = count(unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_checkbox_option_id"])) > 0 ? explode(",",unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_checkbox_option_id"])) : "";
|
385 |
if(count($chk_ids) > 0)
|
386 |
{
|
387 |
?>
|
415 |
}
|
416 |
break;
|
417 |
case 6:
|
418 |
+
$rdl_values = count( unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_radio_option_val"])) > 0 ? explode(",",unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_radio_option_val"])) : "";
|
419 |
+
$rdl_ids = count(unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_radio_option_id"])) > 0 ? explode(",",unserialize($control_settings_array[$form_fields[$flag]->column_dynamicId]["cb_radio_option_id"])) : "";
|
420 |
if(count($rdl_ids) > 0)
|
421 |
{
|
422 |
?>
|
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 bank, contact form, contact form 7, 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, rss, seo, shortcode, sidebar, stats, text, web form, widget, wordpress
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.9.1
|
6 |
-
Stable tag: 2.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -522,6 +522,10 @@ In order to set Shortcode for a Form, you need to follow these steps :
|
|
522 |
|
523 |
== Changelog ==
|
524 |
|
|
|
|
|
|
|
|
|
525 |
= 2.0.44 =
|
526 |
|
527 |
* Few Bugs Fixed
|
3 |
Tags: admin, advanced form, AJAX, best contact form plugin, buddypress, category, comment, comments, contact, contact bank, contact form, contact form 7, 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, rss, seo, shortcode, sidebar, stats, text, web form, widget, wordpress
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 3.9.1
|
6 |
+
Stable tag: 2.0.45
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
522 |
|
523 |
== Changelog ==
|
524 |
|
525 |
+
= 2.0.45 =
|
526 |
+
|
527 |
+
* Few Bugs Fixed Related to Frontend
|
528 |
+
|
529 |
= 2.0.44 =
|
530 |
|
531 |
* Few Bugs Fixed
|