Viewing 1 replies (of 1 total)
  • Plugin Author Ramon Ahnert

    (@rahmohn)

    Hi @phocasgardens

    Yes, you can use the filter wflu_should_redirect_not_logged_in_user to implement your custom logic. Example:

    <?php
    add_filter(
    	'wflu_should_redirect_not_logged_in_user',
    	function( $should_redirect_not_logged_in_user ) {
    		return is_product_category( 'YOUR_CATEGORY' ) || $should_redirect_not_logged_in_user;
    	}
    );

    References:

Viewing 1 replies (of 1 total)

The topic ‘Private & Public Store’ is closed to new replies.