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

    (@rahmohn)

    Hi @holisticmissions

    It’s possible by using the filter wflu_should_redirect_not_logged_in_user:

    add_filter(
    'wflu_should_redirect_not_logged_in_user',
    function() {
    return is_checkout();
    },
    10
    );

    By default, the plugin redirects based on this condition: is_woocommerce() || is_cart() || is_checkout()

    Thread Starter holisticmissions

    (@holisticmissions)

    Thank you. That is exactly what I needed.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.