Support

Account

Home Forums Bug Reports Repeater field in multisite with php import Reply To: Repeater field in multisite with php import

  • I’m glad I found this post… I had the exact same problem with the Gallery Field.

    I personally decided to just add the php to all of my themes’ function.php & then “hide” the fields (in my case an entire option page called Site Content Settings) on my main site, as this was the only theme that didn’t require these fields.

    add_action( 'admin_menu', 'my_remove_menu_pages', 999  );
    function my_remove_menu_pages() {
        remove_menu_page('site-content-settings');   
    } 
    

    Bit messy, but everything works again. No one will every know 🙂