Home › Forums › Bug Reports › ACF Pro – Options pages with Repeaters not working › Reply To: ACF Pro – Options pages with Repeaters not working
@rps what does the code in your theme look like?
something like this?
if( function_exists('acf_add_local_field_group') ):
// ... code to register field group
if it does then try putting it into a action like this
add_action('init', 'load_theme_acf_groups');
function load_theme_acf_groups() {
if( function_exists('acf_add_local_field_group') ):
// ... code to register field group
}
I don’t know that this will solve the problem, but it can’t hurt to try
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.