Support

Account

Home Forums Add-ons Flexible Content Field Create a global counter for a layout type Reply To: Create a global counter for a layout type

  • Hi @egr103

    All you need to do is make a new counter for your flexible content field the same way you did for the repeater like so:

    
    <?php $j = 0; if( get_sub_field('layout') ): ?>
    			<?php while( has_sub_field("layout") ): $j++; ?>
    

    Then use $j in your div id like you used $i.

    Thanks
    E