We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ec32a commit c117ebeCopy full SHA for c117ebe
ReduxCore/inc/welcome/welcome.php
@@ -84,9 +84,11 @@ public function check_version() {
84
$redirect = false;
85
if ( empty( $saveVer ) ) {
86
$redirect = true; // First time
87
- } else if ( version_compare( $curVer, $saveVer, '>' ) ) {
88
- $redirect = true; // Previous version
89
}
+ // Removing redirect except for the first time with the plugin installed. :) Less annoying until we actually use this page.
+ //else if ( version_compare( $curVer, $saveVer, '>' ) ) {
90
+ // $redirect = true; // Previous version
91
+ //}
92
if ( $redirect && ! defined( 'WP_TESTS_DOMAIN' ) && ReduxFramework::$_as_plugin ) {
93
add_action( 'init', array( $this, 'do_redirect' ) );
94
0 commit comments