Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mihdan/1342010deec694cda856f9f5c4c25f03 to your computer and use it in GitHub Desktop.
Save mihdan/1342010deec694cda856f9f5c4c25f03 to your computer and use it in GitHub Desktop.
Using this snippet, you can bypass Elementor's maintenance mode by adding ?bypass_maintenance=1 to the query string
<?php
add_filter( 'pre_option_elementor_maintenance_mode_mode', function ( $option ) {
$parameter = 'bypass_maintenance'; // change this to whatever you like
if ( isset( $_GET['bypass_maintenance'] ) and $_GET['bypass_maintenance'] ) {
return 0; // needs to be falsy but not FALSE
}
return $option;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment