The documentation states that the only field that can’t go inside a Repeater Field is an InnerBlock. I need to add nested Repeater Fields but Repeater Fields is greyed out in the list of available blocks. Is this possible?
Thanks
]]>One thing that would be really helpful is a Group Repeater field—something that lets us create repeatable groups of fields (like a group with text, image, and link fields that can be duplicated multiple times).
This would be useful for things like:
Is this something that might be added in the future? Or is there a workaround for now?
Thanks!
]]>I copied a form that contained a repeater field. The field got copied correctly. But when i send the form to my email adress al the labels form the repeater field were empty and only the submitted data showed up.
eg.
The original form send the data like -> firstname : John
The copied form send the data like -> : John
I tried nearly everything to solve this problem without rebuild the repeater field but without success. So i had to rebuild it then it worked correctly again.
]]>
In Bit Form I created a from with a repeater field and a url field inside the repeater field. But when I submit more than one url through the form only one url gets sent to the created post.
I also have the file upload field that was to be used as featured image but there is no option to connect it with any field. It’s not showing up in the list at all.
Is there a way to make this work?
Added a “Repeater Field” field to the form. I placed several other (numeric) fields in it. Let’s go to the “Field Settings” tab of the repeater field. I tried to make the following settings:
Result:
All the fields inside the “Repeater Field” are gone!
Array
(
[0] => Array
(
[business-in-promotion] => 720
)
etc.
How can I get this to work?
I’m struggling with displaying my ACF Repeater field into single CDATA rows.
This is what i would like to achieve:
<countries>
<![CDATA[ Botswana ]]>
<![CDATA[ Zimbabwe ]]>
</countries>
Currently, it’s displaying like this:
<countries>
<![CDATA[ a:1:{s:4:”land”;s:17:”Botswana|Zimbabwe”;} ]]>
</countries>
I’ve tried writing multiple functions:
<countries>
[my_output_items({Landen})]
</countries>
<?php
function my_output_items( $landen ) {
$pieces = explode("|", $landen);
echo "value: " . $pieces[1] . " ]]>";
}
?>
This returns the following value (on top of the page):
value: Zimbabwe ]]>
So, i feel like i’m getting there, but i really need some help to get further with this. Any advice is highly appreciated.
]]>