Hello everyone,
I’m trying for the first time the pro version of the plugin but I’m not able to display a group of fields without getting this error :
Warning: Trying to access array offset on value of type bool in C:\xampp\htdocs\…
This the code :
<?php $wwdo = get_fields('what_we_do'); ?>
<div class="what-we-do grid">
<div class="what-we-do-content">
<h3><?php $wwdo['titre'];?></h3>
<?php $wwdo['text'];?>
<a href="<?php $wwdo['cta']['link'];?>"><?php $wwdo['cta']['label'];?></a>
</div>
</div>
And a screen of the concerned fields :
Link of the screen if not displayed : https://pasteboard.co/JWbKDEJ.jpg
use get_field() instead of get_fields()
<?php $wwdo = get_field('what_we_do'); ?>