Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Lorenzo Orlando Caum

    (@lorenzocaum)

    Hi SolutionsDEV,

    Those automated messages go out if no payment gateway is enabled. Are you currently hosting only free events?

    Thread Starter SolutionsDEV

    (@solutionsdev)

    Hi Lorenzo,

    Events are not actually free, they have cost, this cost is set in Event Espresso, but we disabled PayPal payments as we do not want to receive this payment through PayPal.

    We use Event Espresso for registration only.

    Thanks for your answer and best regards,

    Josh Feck

    (@builtbynorthby)

    Hi there,

    You can disable the IPN not setup message by opening up /gateways/process_payments.php and around line 178 (might be different on your version) you’ll find this code:

    if (empty($active_gateways)) {
    	$subject = __('Website Payment IPN Not Setup', 'event_espresso');
    	$body = sprintf(__('The IPN for %s at %s has not been properly setup and is not working. Date/time %s', 'event_espresso'), $org_options['organization'], home_url(), date('g:i A'));
    	wp_mail($org_options['contact_email'], $subject, $body);
    	return;
    }

    Then you remove or comment out the above code.

    Thread Starter SolutionsDEV

    (@solutionsdev)

    Thanks Josh for you suggestion, but I fixed it without going into the code.

    It was suggested to disable paypal, but even if it is disabled, it continues to send error messages, I’ve put the email for paypal even though that it was disabled, it worked fine.

    Regards to all,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘IPN not properly setup’ is closed to new replies.