What is going wrong with my code here, as nothing is being shown front end, apologies i’m sure its something simple…
<!--Field Name-->
<?php if( have_rows('clients_list') ): ?>
<ul class="slides">
<!--Field Name-->
<?php while( have_rows('clients_list') ): the_row(); ?>
<li>
<!--Layout Name-->
<?php if( get_row_layout() == 'client_detail' ):?>
<!--Row Field Name-->
<?php the_field('client_name'); ?>
<!--Row Field Name-->
<?php the_field('client_url'); ?>
<?php endif; ?>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
Hard to know for sure as there is no way of knowing how you have your custom fields set up but by looking at your code you could try changing:
<?php the_field(‘client_name’); ?> to <?php the_sub_field(‘client_name’); ?> and same with the other field.
I’m sorry here, is a screen shot..

Well, did you try with the code I posted? As to me that seems to be the only thing wrong.
<?php the_field(‘client_name’); ?> to <?php the_sub_field(‘client_name’); ?>
Brilliant thank you , yes that works. 🙂