Support

Account

Home Forums General Issues Problems with the new clone field Reply To: Problems with the new clone field

  • Hi @cloud9

    Thanks for the q’s.

    Are you able to export your field groups to .json and attach them to your reply?
    This way, i can import them on my local site and test it out.

    For now, I suggest testing what data is loaded by the flexible content field uysing the get_field function() like so:

    
    <?php 
    
    echo '<pre>';
    	print_r( get_field('flexi_layouts') );
    echo '</pre>';
    die;
    
     ?>
    

    * assuming that ‘flexi_layouts’ is your parent field.