Current status: Unsolved. . Done
Admin only showing 20 fields groups
  • I have 25 field groups, but in the admin it only shows 20. 5 of them are hidden from me!

    I have tried disabling all other plugins but it did not help.
  • Thanks shaunr,

    I'll get this fixed in the next version
  • acf.css, around line 21:

    change this:


    #acf-col-left .tablenav,
    #acf-col-left p.search-box {
    display: none;
    }

    #acf-col-left form {
    overflow: hidden; position: relative; clear: left;
    }


    to this:


    #acf-col-left p.search-box,
    #acf-col-left .tablenav .actions {
    display: none;
    }

    #acf-col-left #posts-filter .tablenav {
    float: right;
    clear: none;
    }

    #acf-col-left form .wp-list-table {
    clear: none;
    }


    That will show the WordPress pagination, but still hide the other default stuff, as author intended.

    I am not 100% sure this doesn't break any other stuff, but it seems to be ok. It anyone sees something braking, please shout! :)
  • Hey guys,

    Please update to 3.3.7 - The css has been changed to allow for pagination
  • Great thanks!