Skip to content

Instantly share code, notes, and snippets.

@mishterk
Last active April 4, 2024 13:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mishterk/f088ba8c284b11e7356a9b2d43531caf to your computer and use it in GitHub Desktop.
Save mishterk/f088ba8c284b11e7356a9b2d43531caf 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