Home › Forums › ACF PRO › ACF_FORM() get return › Reply To: ACF_FORM() get return
Hi @triixx
Instead of return $msg;
, I believe you can use the wp_redirect()
function instead like this:
// These are just for testing. You need to get the actual
// value based on the registration
$success = false;
$error_code = '1'
// if the registration failed
if( !$success ){
wp_redirect( 'http://example.com/register/?success=false&error=' . $error_code );
}`
I hope this helps 🙂
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.