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’m facing following issue in ACF Pro version of plugin
When I use “Post Taxonomy” field Inside Flexible Content In any page it doesn’t update its selected term value.
Note: I have use select box for that with single value only
for details refer below video url
https://www.awesomescreenshot.com/video/23915092?key=8ae7c61ab692c844e59e16fc1dfe3b55
WP Version : 6.4.2
PHP Version : 8.0
ACF Pro Version : 6.2.4
With the dynamic rendering of content, how do I render the stylesheets in the head rather than the footer? Is this an option I can select or does it need to be manipulated by a hook?
Thanks in advance.
]]>I love how the example looks and have been playing with the Selection Modal but my uploaded images are either cut off or have too much space around them, so it would be great to know the exact sizes these thumbnails show as, so I can edit the images to the perfect size for displaying in each modal size etc.
]]>can you please check acf plugin UI for flexible content and select box option field also acf update button not working .
https://ibb.co/fDr7K35
]]>if ( ! empty ( $table ) )
it will display empty table cells with no content. I tested the code (table code, copy/pasted directly from the plugin page with my field name inserted) outside of the flexible content field and the table works fine. How can I get the table to work inside the flexible content field?
<?php
global $post;
$page_id = get_queried_object_id();
if( have_rows('page_content', $page_id) ): ?>
<?php while ( have_rows('page_content', $page_id) ) : the_row(); ?>
<!-- Other Content Blocks -------- -->
<?php elseif( get_row_layout() == 'product_table' ): ?>
<?php
$table = get_field( 'table_block' );
if ( ! empty ( $table ) ) {
echo '<table border="0">';
if ( ! empty( $table['caption'] ) ) {
echo '<caption>' . $table['caption'] . '</caption>';
}
if ( ! empty( $table['header'] ) ) {
echo '<thead>';
echo '<tr>';
foreach ( $table['header'] as $th ) {
echo '<th>';
echo $th['c'];
echo '</th>';
}
echo '</tr>';
echo '</thead>';
}
echo '<tbody>';
foreach ( $table['body'] as $tr ) {
echo '<tr>';
foreach ( $tr as $td ) {
echo '<td>';
echo $td['c'];
echo '</td>';
}
echo '</tr>';
}
echo '</tbody>';
echo '</table>';
}
?>
<?php endif; ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<?php endif; ?>
]]>