Viewing 3 replies - 1 through 3 (of 3 total)
  • Did you ever find a solution to this problem?

    Plugin Contributor genetech

    (@genetech)

    Hi,

    This is a quick fix for this problem, please note: you must be familiar editing PHP code before doing so.

    #1
    Go to line #689 where it reads:
    $update["email_delete_grace"] = $this->disable_magic_quotes_gpc($_POST['piereg_email_delete_grace']);

    Replace it with
    $update["email_delete_grace"] = intval($_POST['piereg_email_delete_grace']);

    #2

    Go to line #2310 where it reads:
    $grace_date = date('Ymd', strtotime("-7 days"));

    Replace it with:
    $grace_date = date('Ymd', strtotime("-{$grace} days"));

    Hope it helps.

    Thanks

    Hi Genetech Solutions

    Thanks that worked perfectly.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Pie Register] Grace Period Not Working!’ is closed to new replies.