Does anyone know if you can use the ACF Repeater field with the Divi Page Builder Dynamic Content feature? Because the ACF Repeater requires a loop to display all rows, I’m not sure how, or if, this is possible, so any experience that can be shared with this would be appreciated.
I would also be interested if it is possible to display a repeatable using the DIVI dynamic content feature
I would also be interested to use repeatable field in ACF with the DIVI dynamic content feature or another module
I use a shortcode to build out what I want then place the shortcode into the divi module
function foobar_func( $atts ){
ob_start();
//ACF fields here
return ob_get_clean();
}
add_shortcode( 'foobar', 'foobar_func' );