I was able to solve my own problem…
Rather than adding the title like I did above, I modified the array to create the post:
'post_title' => $_POST['acf']['field_5e67ae0b70e42'],
Hi laras126,
Links are working on my end (not using Timber/twig). Headings are also working, it just seems to be paragraph tags that are getting stripped. I’m not modifying the wpautop function anywhere, have deactivated all plugins and also tried the TwentyFifteen theme.
I’m getting the same issue and I’m not using Timber.
I had the same issue with a different plugin, “Google Analytics Dashboard for WP”.
I just checked an old website I developed and confirmed that I have 5 repeaters on a single page.
You should be able to accomplish this by having two repeater fields. Depending on the situation, a nested repeater might be a good option as well:
http://www.advancedcustomfields.com/resources/tutorials/working-with-nested-repeaters/
Was just about to ask the same question 🙂
I managed to do it using the following code:
function my_acf_load_value( $value, $post_id, $field ) {
$value = get_the_title();
return $value;
}
add_filter('acf/load_value/name=FIELD_NAME', 'my_acf_load_value', 10, 3);
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.