I have a sub field in ACF, named 'imgcolumn_1'.
This is set to be an image, and allows the user to add an image.
Now, when in PHP, I am trying to retrieve the input the user adds.
For example, I have another sub field in AFC called column_1, which I retrieve using
<?php the_sub_field('column_1');?>
Is there another way to retrieve the image? I am trying the below:
<img src="<?php the_sub_field('imgcolumn_1'); ?>" />
But this doesnt display the image, but instead shows the following:
When I inspect this, I can see the URL is there, but it is surrounded by other numbers?
Any help would be amazing.