This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; | |
} | |
} | |