Home › Forums › Add-ons › Repeater Field › image ID thumbnail in repeater › Reply To: image ID thumbnail in repeater
I know it’s an old question and you’ve probably figured this out by now, at least I hope so, but for anyone else that has a similar question.
The main problem with the above code is the first line
$attachment_id = the_field('bild_startseite_boxen');
the_field() echos the value, when you want to put the value into a variable you must use get_field()
$attachment_id = get_field('bild_startseite_boxen');
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.