Version Description
- Added: Option to disable activation welcome screen,
wpforms_activation_redirect
Download this release
Release Info
| Developer | jaredatch |
| Plugin | |
| Version | 1.3.6.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.3.6 to 1.3.6.1
- includes/admin/class-welcome.php +5 -0
- readme.txt +3 -0
- wpforms.php +2 -2
includes/admin/class-welcome.php
CHANGED
|
@@ -180,6 +180,11 @@ class WPForms_Welcome {
|
|
| 180 |
// If we are redirecting, clear the transient so it only happens once
|
| 181 |
delete_transient( 'wpforms_activation_redirect' );
|
| 182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 183 |
// Only do this for single site installs
|
| 184 |
if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
|
| 185 |
return;
|
| 180 |
// If we are redirecting, clear the transient so it only happens once
|
| 181 |
delete_transient( 'wpforms_activation_redirect' );
|
| 182 |
|
| 183 |
+
// Check option to disable welcome redirect
|
| 184 |
+
if ( get_option( 'wpforms_activation_redirect', false ) ) {
|
| 185 |
+
return;
|
| 186 |
+
}
|
| 187 |
+
|
| 188 |
// Only do this for single site installs
|
| 189 |
if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
|
| 190 |
return;
|
readme.txt
CHANGED
|
@@ -163,6 +163,9 @@ Syed Balkhi
|
|
| 163 |
|
| 164 |
== Changelog ==
|
| 165 |
|
|
|
|
|
|
|
|
|
|
| 166 |
= 1.3.6 =
|
| 167 |
- Added: Constant Contact integration
|
| 168 |
- Changed: Don't strip tags from plain text emails
|
| 163 |
|
| 164 |
== Changelog ==
|
| 165 |
|
| 166 |
+
= 1.3.6.1 =
|
| 167 |
+
- Added: Option to disable activation welcome screen, `wpforms_activation_redirect`
|
| 168 |
+
|
| 169 |
= 1.3.6 =
|
| 170 |
- Added: Constant Contact integration
|
| 171 |
- Changed: Don't strip tags from plain text emails
|
wpforms.php
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
| 6 |
* Author: WPForms
|
| 7 |
* Author URI: https://wpforms.com
|
| 8 |
-
* Version: 1.3.6
|
| 9 |
* Text Domain: wpforms
|
| 10 |
* Domain Path: languages
|
| 11 |
*
|
|
@@ -81,7 +81,7 @@ final class WPForms {
|
|
| 81 |
* @since 1.0.0
|
| 82 |
* @var sting
|
| 83 |
*/
|
| 84 |
-
public $version = '1.3.6';
|
| 85 |
|
| 86 |
/**
|
| 87 |
* The form data handler instance.
|
| 5 |
* Description: Beginner friendly WordPress contact form plugin. Use our Drag & Drop form builder to create your WordPress forms.
|
| 6 |
* Author: WPForms
|
| 7 |
* Author URI: https://wpforms.com
|
| 8 |
+
* Version: 1.3.6.1
|
| 9 |
* Text Domain: wpforms
|
| 10 |
* Domain Path: languages
|
| 11 |
*
|
| 81 |
* @since 1.0.0
|
| 82 |
* @var sting
|
| 83 |
*/
|
| 84 |
+
public $version = '1.3.6.1';
|
| 85 |
|
| 86 |
/**
|
| 87 |
* The form data handler instance.
|
