We are getting the transaction info error message (screenshot) on our Gravity forms thank you pages. All of the EE critical pages are correctly assigned and are not on this thank you page. Here’s a link to the thank you page.
This is cause by another page with the same slug (thank-you) as the Event Espresso page, I’ll check in with the developers on preventing it from loading within core.
However as a quick fix you can add:
add_filter( 'FHEE__EE_Front_Controller__display_errors', 'ee_remove_notices_from_front_page' );
function ee_remove_notices_from_front_page($display_errors) {
// Check if this is the 'other' thank-you page ID and
// if so set the EE_Front_Controller not to display errors.
if( is_page(306) ) {
$display_errors = false;
}
return $display_errors;
}
I though you may have wanted to keep the slug as thank-you.
I’m glad its now working as expected.
Viewing 4 reply threads
The support post ‘No transaction information error on non-EE pages’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.