Home › Forums › Backend Issues (wp-admin) › Use posted acf value in other acf field (same post) › Reply To: Use posted acf value in other acf field (same post)
Emails from WP do not run shortcodes by default, you need to make that happen. There are some plugins that will do this or you can add code to your site.
add_filter('wp_mail', 'shortcodes_in_wp_mail', 20, 1);
function shortcodes_in_wp_mail($args) {
$args['message'] = do_shortcode($args['message']);
return $args;
}
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.