Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Pie Register

    (@pieregister)

    Hi,

    We apologize for the inconvenience.

    Can you please contact us here so that our development team can further debug your environment?

    Thank you
    Pie Register Support

    Thread Starter erredeco

    (@erredeco)

    The problem is in file pie_register.php, line 1659

    if ( !empty($redirect_page) && ( $update['after_login'] == '-2' ) && !is_user_logged_in() && !is_home() && !is_front_page() && !is_shop())
    if WooCommerce is not present, the function is_shop() cannot be verified.
    After contacting the support, the line should be replaced with:

    if ( !empty($redirect_page) && ( $update['after_login'] == '-2' ) && !is_user_logged_in() && !is_home() && !is_front_page() && ( function_exists( 'is_shop' ) && !is_shop() ) )

    Plugin Author Pie Register

    (@pieregister)

    Hi,

    Thank you for your contribution. We haven’t heard back from you in a while, so we are going to mark this thread as resolved. You can always raise a new one or continue this one if you need any further assistance.

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Fatal error on redirect’ is closed to new replies.