Skip to content

Instantly share code, notes, and snippets.

@ninjaval
ninjaval / gist:97f3f297086aac7cd435f05b1de5db7e
Created January 29, 2018 18:13
Hide WooCommerce Pages/Products to logged out users & redirect them to homepage.
// redirecting individual products to homepage for logged out users
add_action( 'template_redirect', 'fs_maintance_mode' );
function fs_maintance_mode() {
if ( is_singular( 'product' ) && !is_user_logged_in() ) {
wp_redirect( home_url() );
exit;
}
}