Home › Forums › ACF PRO › Display User Data with MultiSite › Reply To: Display User Data with MultiSite
I think I have the same issue. I have a repeater in the options area of site #12 and I can’t access it from site #2.
// on site 12, works, displays all the data in the repeater
print_r( get_field( 'featured_items', 'options' ) );
// on site 2, only shows "6", the number of items in the repeater
switch_to_blog( 12 );
print_r( get_field( 'featured_items', 'options' ) );
restore_current_blog();
// on site 2, this is a text field, this works
switch_to_blog( 12 );
print_r( get_field( 'company_name_long', 'options' ) );
restore_current_blog();
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.