| @@ -210,12 +210,8 @@ | ||
| 210 | 210 | private function activate_on_site() { |
| 211 | 211 | wp_clear_scheduled_hook( 'visualizer_schedule_refresh_db' ); |
| 212 | 212 | wp_schedule_event( strtotime( 'midnight' ) - get_option( 'gmt_offset' ) * HOUR_IN_SECONDS, apply_filters( 'visualizer_chart_schedule_interval', 'hourly' ), 'visualizer_schedule_refresh_db' ); |
| 213 | 213 | add_option( 'visualizer-activated', true ); |
| 214 | - $is_fresh_install = get_option( 'visualizer_fresh_install', false ); | |
| 215 | - if ( ! defined( 'TI_CYPRESS_TESTING' ) && false === $is_fresh_install ) { | |
| 216 | - update_option( 'visualizer_fresh_install', '1' ); | |
| 217 | - } | |
| 218 | 214 | } |
| 219 | 215 | |
| 220 | 216 | /** |
| 221 | 217 | * Deactivate the plugin |
| @@ -254,25 +250,10 @@ | ||
| 254 | 250 | |
| 255 | 251 | if ( get_option( 'visualizer-activated' ) ) { |
| 256 | 252 | delete_option( 'visualizer-activated' ); |
| 257 | 253 | if ( ! headers_sent() ) { |
| 258 | - if ( ! Visualizer_Module::is_pro() && ! empty( get_option( 'visualizer_fresh_install', false ) ) ) { | |
| 259 | - $redirect_url = array( | |
| 260 | - 'page' => 'visualizer-setup-wizard', | |
| 261 | - 'tab' => '#step-1', | |
| 262 | - ); | |
| 263 | - } else { | |
| 264 | - $page_name = Visualizer_Module::numberOfCharts() > 0 ? Visualizer_Plugin::NAME : 'viz-support'; | |
| 265 | - $redirect_url = array( | |
| 266 | - 'page' => $page_name, | |
| 267 | - ); | |
| 268 | - } | |
| 269 | - wp_safe_redirect( | |
| 270 | - add_query_arg( | |
| 271 | - $redirect_url, | |
| 272 | - admin_url( 'admin.php' ) | |
| 273 | - ) | |
| 274 | - ); | |
| 254 | + $page_name = Visualizer_Module::numberOfCharts() > 0 ? Visualizer_Plugin::NAME : 'viz-support'; | |
| 255 | + wp_redirect( esc_url_raw( add_query_arg( 'page', $page_name, admin_url( 'admin.php' ) ) ) ); | |
| 275 | 256 | exit(); |
| 276 | 257 | } |
| 277 | 258 | } |
| 278 | 259 | } |