PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/oligap/www/wp-content/themes/woodmart/inc/integrations/woocommerce/modules/ |
| Server: Linux cloud.virginhosting.lk 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64 IP: 128.140.68.198 |
| Dir : /home/oligap/www/wp-content/themes/woodmart/inc/integrations/woocommerce/modules/maintenance.php |
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) {
exit( 'No direct script access allowed' );
}
if ( ! function_exists( 'woodmart_maintenance_mode' ) ) {
function woodmart_maintenance_mode() {
if ( ! woodmart_get_opt( 'maintenance_mode' ) || is_user_logged_in() ) {
return;
}
$page_id = woodmart_pages_ids_from_template( 'maintenance' );
$page_id = current( $page_id );
if ( ! $page_id ) {
return;
}
if ( ! is_page( $page_id ) && ! is_user_logged_in() ) {
wp_redirect( get_permalink( $page_id ) );
exit();
}
}
add_action( 'template_redirect', 'woodmart_maintenance_mode', 10 );
}