Support

Account

Home Forums ACF PRO Create a loop on Divi Builder with Repeater function

Solving

Create a loop on Divi Builder with Repeater function

  • Hello,
    I develop a website for my travel agency and I would like to know if it’s possible to create a loop with the ACF’s function REPEATER on DIVI . Actually my program is composed of :

    DAY 1
    Tile / Description / City

    DAY 2
    Tile / Description / City

    DAY 3
    Tile / Description / City

    Actually I manage to call each information but how is it possible to create a loop on DIVI into my layout template because some programs will have 3 days and some 12 days so I really need this loop 🙂

    Thanks,
    Jonathan

  • I have the same problem, if someone has a solution to show repeater field with acf on DIVI theme builder it would be great.

  • I am also very interested and eager to have an answer to this problem !

  • I create a shortcode and place the shortcode inside the module

    function foobar_func( $atts ){
    	ob_start();
    //ACF fields here
    	return ob_get_clean();
    }
    add_shortcode( 'foobar', 'foobar_func' );
  • Hi poonasor,
    could you be a bit more specific, pls?

    How do you create the shortcode and where do you place it into the module?

    Thank you

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘Create a loop on Divi Builder with Repeater function’ is closed to new replies.