Version Description
- Fix bug that form layout broken when Gutenberg installed.
Download this release
Release Info
Developer | inc2734 |
Plugin | MW WP Form |
Version | 4.0.1 |
Comparing to | |
See all releases |
Code changes from version 4.0.0 to 4.0.1
- classes/controllers/class.admin-list.php +1 -1
- classes/services/class.exec-shortcode.php +4 -1
- mw-wp-form.php +2 -2
- readme.txt +15 -12
- templates/admin/add-ons.php +2 -2
classes/controllers/class.admin-list.php
CHANGED
@@ -29,7 +29,7 @@ class MW_WP_Form_Admin_List_Controller extends MW_WP_Form_Controller {
|
|
29 |
'donation' =>
|
30 |
'<div class="donation"><p>' .
|
31 |
__( 'Your contribution is needed for making this plugin better.', 'mw-wp-form' ) .
|
32 |
-
' <a href="
|
33 |
__( 'Donate', 'mw-wp-form' ) . '</a></p></div>'
|
34 |
);
|
35 |
$views = array_merge( $donation, $views );
|
29 |
'donation' =>
|
30 |
'<div class="donation"><p>' .
|
31 |
__( 'Your contribution is needed for making this plugin better.', 'mw-wp-form' ) .
|
32 |
+
' <a href="https://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40" class="button">' .
|
33 |
__( 'Donate', 'mw-wp-form' ) . '</a></p></div>'
|
34 |
);
|
35 |
$views = array_merge( $donation, $views );
|
classes/services/class.exec-shortcode.php
CHANGED
@@ -283,7 +283,10 @@ class MW_WP_Form_Exec_Shortcode {
|
|
283 |
*/
|
284 |
protected function _wpautop( $content ) {
|
285 |
$has_wpautop = false;
|
286 |
-
|
|
|
|
|
|
|
287 |
$has_wpautop = true;
|
288 |
}
|
289 |
|
283 |
*/
|
284 |
protected function _wpautop( $content ) {
|
285 |
$has_wpautop = false;
|
286 |
+
|
287 |
+
if ( function_exists( 'is_gutenberg_page' ) ) {
|
288 |
+
$has_wpautop = true;
|
289 |
+
} elseif ( has_filter( 'the_content', 'wpautop' ) ) {
|
290 |
$has_wpautop = true;
|
291 |
}
|
292 |
|
mw-wp-form.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: MW WP Form
|
4 |
-
* Plugin URI:
|
5 |
* Description: MW WP Form is shortcode base contact form plugin. This plugin have many features. For example you can use many validation rules, inquiry data saving, and chart aggregation using saved inquiry data.
|
6 |
-
* Version: 4.0.
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: https://2inc.org
|
9 |
* Created : September 25, 2012
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: MW WP Form
|
4 |
+
* Plugin URI: https://plugins.2inc.org/mw-wp-form/
|
5 |
* Description: MW WP Form is shortcode base contact form plugin. This plugin have many features. For example you can use many validation rules, inquiry data saving, and chart aggregation using saved inquiry data.
|
6 |
+
* Version: 4.0.1
|
7 |
* Author: Takashi Kitajima
|
8 |
* Author URI: https://2inc.org
|
9 |
* Created : September 25, 2012
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== MW WP Form ===
|
2 |
Contributors: inc2734, ryu263, tomothumb, nanniku, mt8.biz, NExt-Season, kuck1u, mypacecreator, mh35
|
3 |
-
Donate link:
|
4 |
Tags: plugin, form, confirm, preview, shortcode, mail, chart, graph, html, contact form, form creation, form creator, form manager, form builder, custom form
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.9.8
|
7 |
-
Stable tag: 4.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -36,14 +36,14 @@ Source: https://developers.google.com/chart/
|
|
36 |
|
37 |
= Contributors =
|
38 |
|
39 |
-
* [Takashi Kitajima](https://2inc.org) ( [inc2734](
|
40 |
-
* [Ryujiro Yamamoto](
|
41 |
-
* [Tsujimoto Tomoyuki](http://kee-non.com) ( [tomothumb](
|
42 |
-
* [Naoyuki Ohata] ( [nanniku](
|
43 |
-
* [Kazuto Takeshita](
|
44 |
-
* [Atsushi Ando](
|
45 |
-
* [Kazuki Tomiyasu](
|
46 |
-
* [Kei Nomura](
|
47 |
* [mh35](https://profiles.wordpress.org/mh35)
|
48 |
* [Takashi Nojima](https://github.com/nojimage)
|
49 |
* [herikutu](https://github.com/herikutu)
|
@@ -58,8 +58,8 @@ Source: https://developers.google.com/chart/
|
|
58 |
|
59 |
Do you have questions or issues with MW WP Form? Use these support channels appropriately.
|
60 |
|
61 |
-
1. [Official](
|
62 |
-
1. [Support Forum](
|
63 |
|
64 |
== Screenshots ==
|
65 |
|
@@ -71,6 +71,9 @@ Do you have questions or issues with MW WP Form? Use these support channels appr
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
74 |
= 4.0.0 =
|
75 |
* Refactoring
|
76 |
* Update redirect process.
|
1 |
=== MW WP Form ===
|
2 |
Contributors: inc2734, ryu263, tomothumb, nanniku, mt8.biz, NExt-Season, kuck1u, mypacecreator, mh35
|
3 |
+
Donate link: https://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
|
4 |
Tags: plugin, form, confirm, preview, shortcode, mail, chart, graph, html, contact form, form creation, form creator, form manager, form builder, custom form
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.9.8
|
7 |
+
Stable tag: 4.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
36 |
|
37 |
= Contributors =
|
38 |
|
39 |
+
* [Takashi Kitajima](https://2inc.org) ( [inc2734](https://profiles.wordpress.org/inc2734) )
|
40 |
+
* [Ryujiro Yamamoto](https://webcre-archive.com) ( [ryu263](https://profiles.wordpress.org/ryu263) )
|
41 |
+
* [Tsujimoto Tomoyuki](http://kee-non.com) ( [tomothumb](https://profiles.wordpress.org/tomothumb) )
|
42 |
+
* [Naoyuki Ohata] ( [nanniku](https://profiles.wordpress.org/nanniku) )
|
43 |
+
* [Kazuto Takeshita](https://mt8.biz/) ( [moto hachi](https://profiles.wordpress.org/mt8biz/) )
|
44 |
+
* [Atsushi Ando](https://www.next-season.net/) ( [NExt-Season](https://profiles.wordpress.org/next-season/) )
|
45 |
+
* [Kazuki Tomiyasu](https://visualive.jp/) ( [KUCKLU](https://profiles.wordpress.org/kuck1u/) )
|
46 |
+
* [Kei Nomura](https://mypacecreator.net/) ( [mypacecreator](https://profiles.wordpress.org/mypacecreator/) )
|
47 |
* [mh35](https://profiles.wordpress.org/mh35)
|
48 |
* [Takashi Nojima](https://github.com/nojimage)
|
49 |
* [herikutu](https://github.com/herikutu)
|
58 |
|
59 |
Do you have questions or issues with MW WP Form? Use these support channels appropriately.
|
60 |
|
61 |
+
1. [Official](https://plugins.2inc.org/mw-wp-form/)
|
62 |
+
1. [Support Forum](https://wordpress.org/support/plugin/mw-wp-form)
|
63 |
|
64 |
== Screenshots ==
|
65 |
|
71 |
|
72 |
== Changelog ==
|
73 |
|
74 |
+
= 4.0.1 =
|
75 |
+
* Fix bug that form layout broken when Gutenberg installed.
|
76 |
+
|
77 |
= 4.0.0 =
|
78 |
* Refactoring
|
79 |
* Update redirect process.
|
templates/admin/add-ons.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
<p>
|
2 |
<?php esc_html_e( 'You can use more easy and useful to the MW WP Form in add-on!', 'mw-wp-form' ); ?><br />
|
3 |
-
<a href="
|
4 |
-
</p>
|
1 |
<p>
|
2 |
<?php esc_html_e( 'You can use more easy and useful to the MW WP Form in add-on!', 'mw-wp-form' ); ?><br />
|
3 |
+
<a href="https://plugins.2inc.org/mw-wp-form/add-on/" target="_blank" class="button button-primary"><?php esc_html_e( 'View Add-ons', 'mw-wp-form' ); ?></a>
|
4 |
+
</p>
|