Then use an str replace function to setup your custom message:
function ee_override_check_information($content)
{
$content = str_replace('check payment information', '<a href="http://example.com">Click here to make your payment</a>. Your payments will be <strong>processed securely</strong>.',$content);
return $content;
}
add_filter('the_content','ee_override_check_information', 200);
The support post ‘EE4 removes header and strong tags in payment methods’ 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.