Ok, that was easy…
Just copied the plugin folder in the theme folder. And followed the steps.
Now I must figure out why some fields are not appearing.
thanks!
Hi Elliot,
Thanks for the response, however I meant something different 🙂
I want to know know how can I include ACF and ACF Gallery in a premium theme. I haven´t found a way to do it so that users don´t have to download plugins.
Thanks
Thanks for the info.
In the end it was some closing tabs problem.
This is the final working code:
<?php
$images = get_field('gallery');?>
<ul class="gallery-link">
<?php foreach( $images as $image ): ?>
<li>
<a href="<?php echo $image['url']; ?>">
<img src="<?php echo $image['url']; ?>">
</a>
</li>
<?php endforeach; ?>
</ul>