Version Description
- Fixed: plugin compatibility with Contact Form 7 version 5.0 acceptance checkbox triggering submit button
Download this release
Release Info
Developer | flixos90 |
Plugin | Bootstrap for Contact Form 7 |
Version | 1.4.7 |
Comparing to | |
See all releases |
Code changes from version 1.4.6 to 1.4.7
- bootstrap-for-contact-form-7.php +1 -1
- changelog.txt +3 -0
- modules/acceptance.php +2 -2
- readme.txt +6 -3
bootstrap-for-contact-form-7.php
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
* Plugin Name: Bootstrap for Contact Form 7
|
11 |
* Plugin URI: https://wordpress.org/plugins/bootstrap-for-contact-form-7/
|
12 |
* Description: This plugin modifies the output of the popular Contact Form 7 plugin to be styled in compliance with themes using the Bootstrap CSS framework.
|
13 |
-
* Version: 1.4.
|
14 |
* Author: Felix Arntz
|
15 |
* Author URI: https://leaves-and-love.net
|
16 |
* License: GNU General Public License v3
|
10 |
* Plugin Name: Bootstrap for Contact Form 7
|
11 |
* Plugin URI: https://wordpress.org/plugins/bootstrap-for-contact-form-7/
|
12 |
* Description: This plugin modifies the output of the popular Contact Form 7 plugin to be styled in compliance with themes using the Bootstrap CSS framework.
|
13 |
+
* Version: 1.4.7
|
14 |
* Author: Felix Arntz
|
15 |
* Author URI: https://leaves-and-love.net
|
16 |
* License: GNU General Public License v3
|
changelog.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
== Changelog ==
|
2 |
|
|
|
|
|
|
|
3 |
= 1.4.6 =
|
4 |
* Fixed: plugin compatibility with Contact Form 7 version 5.0 acceptance checkbox triggering submit button
|
5 |
* Fixed: plugin compatibility with Contact Form 7 after refactor removing jQuery.fn.wpcf7ClearResponseOutput() function
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 1.4.7 =
|
4 |
+
* Fixed: plugin compatibility with Contact Form 7 version 5.0 acceptance checkbox triggering submit button
|
5 |
+
|
6 |
= 1.4.6 =
|
7 |
* Fixed: plugin compatibility with Contact Form 7 version 5.0 acceptance checkbox triggering submit button
|
8 |
* Fixed: plugin compatibility with Contact Form 7 after refactor removing jQuery.fn.wpcf7ClearResponseOutput() function
|
modules/acceptance.php
CHANGED
@@ -53,7 +53,7 @@ function cf7bs_acceptance_shortcode_handler( $tag ) {
|
|
53 |
$field = new CF7BS_Form_Field( cf7bs_apply_field_args_filter( array(
|
54 |
'name' => $tag_obj->name,
|
55 |
'id' => $tag_obj->get_option( 'id', 'id', true ),
|
56 |
-
'class' =>
|
57 |
'type' => 'checkbox',
|
58 |
'value' => $tag_obj->has_option( 'default:on' ) ? '1' : '0',
|
59 |
'options' => array(
|
@@ -69,7 +69,7 @@ function cf7bs_acceptance_shortcode_handler( $tag ) {
|
|
69 |
'mode' => $mode,
|
70 |
'status' => $status,
|
71 |
'tabindex' => $tag_obj->get_option( 'tabindex', 'int', true ),
|
72 |
-
'wrapper_class' => $tag_obj->
|
73 |
'label_class' => $tag_obj->get_option( 'label_class', 'class', true ),
|
74 |
), $tag_obj->basetype, $tag_obj->name ) );
|
75 |
|
53 |
$field = new CF7BS_Form_Field( cf7bs_apply_field_args_filter( array(
|
54 |
'name' => $tag_obj->name,
|
55 |
'id' => $tag_obj->get_option( 'id', 'id', true ),
|
56 |
+
'class' => '',
|
57 |
'type' => 'checkbox',
|
58 |
'value' => $tag_obj->has_option( 'default:on' ) ? '1' : '0',
|
59 |
'options' => array(
|
69 |
'mode' => $mode,
|
70 |
'status' => $status,
|
71 |
'tabindex' => $tag_obj->get_option( 'tabindex', 'int', true ),
|
72 |
+
'wrapper_class' => $tag_obj->get_class_option( $class ),
|
73 |
'label_class' => $tag_obj->get_option( 'label_class', 'class', true ),
|
74 |
), $tag_obj->basetype, $tag_obj->name ) );
|
75 |
|
readme.txt
CHANGED
@@ -4,12 +4,12 @@ Plugin Name: Bootstrap for Contact Form 7
|
|
4 |
Plugin URI: https://wordpress.org/plugins/bootstrap-for-contact-form-7/
|
5 |
Author: Felix Arntz
|
6 |
Author URI: https://leaves-and-love.net
|
7 |
-
Contributors: flixos90
|
8 |
Donate link: https://leaves-and-love.net/wordpress-plugins/
|
9 |
Requires at least: 3.6
|
10 |
Tested up to: 4.9
|
11 |
-
Stable tag: 1.4.
|
12 |
-
Version: 1.4.
|
13 |
License: GNU General Public License v3
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
Tags: contact form 7, wpcf7, bootstrap, bootstrap 3, bootstrap framework, addon, contact form 7 addon, contact form, cf7bs
|
@@ -111,6 +111,9 @@ You can also contribute to the plugin by translating it. Simply visit [translate
|
|
111 |
|
112 |
== Changelog ==
|
113 |
|
|
|
|
|
|
|
114 |
= 1.4.6 =
|
115 |
* Fixed: plugin compatibility with Contact Form 7 version 5.0 acceptance checkbox triggering submit button
|
116 |
* Fixed: plugin compatibility with Contact Form 7 after refactor removing jQuery.fn.wpcf7ClearResponseOutput() function
|
4 |
Plugin URI: https://wordpress.org/plugins/bootstrap-for-contact-form-7/
|
5 |
Author: Felix Arntz
|
6 |
Author URI: https://leaves-and-love.net
|
7 |
+
Contributors: flixos90, gidomanders
|
8 |
Donate link: https://leaves-and-love.net/wordpress-plugins/
|
9 |
Requires at least: 3.6
|
10 |
Tested up to: 4.9
|
11 |
+
Stable tag: 1.4.7
|
12 |
+
Version: 1.4.7
|
13 |
License: GNU General Public License v3
|
14 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
15 |
Tags: contact form 7, wpcf7, bootstrap, bootstrap 3, bootstrap framework, addon, contact form 7 addon, contact form, cf7bs
|
111 |
|
112 |
== Changelog ==
|
113 |
|
114 |
+
= 1.4.7 =
|
115 |
+
* Fixed: plugin compatibility with Contact Form 7 version 5.0 acceptance checkbox triggering submit button
|
116 |
+
|
117 |
= 1.4.6 =
|
118 |
* Fixed: plugin compatibility with Contact Form 7 version 5.0 acceptance checkbox triggering submit button
|
119 |
* Fixed: plugin compatibility with Contact Form 7 after refactor removing jQuery.fn.wpcf7ClearResponseOutput() function
|