Support

Account

Home Forums Add-ons Repeater Field ACF Repeater with Divi Page Builder Reply To: ACF Repeater with Divi Page Builder

  • 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' );