Home › Forums › Front-end Issues › Repeater Fields On Multiple Pages › Reply To: Repeater Fields On Multiple Pages
Hi DanielWinnard!
Yes, you can use an option page (https://www.advancedcustomfields.com/add-ons/options-page/). Then in your pages you can do something like this:
<?php
// current page download links (your different set of download links)
$download_links_to_show = get_field(‘download_links’);
// if you dont have links on that page
if(empty($download_links_to_show)) {
// use common download links
$download_links_to_show = get_field(‘common_download_links’, ‘option’);
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.