Viewing 15 replies - 16 through 30 (of 32 total)
  • I have the same issue with v3.5.4.1 and WordPress 3.5. The data are saved in the database but they are not visible in the “Edit Field Group”.

    Field Groups I have created are visible and the number their fields in the right side. But when I click on the Field Group then I get “No fields. Click the + Add Field button to create your first field.”

    Let me know if you want to provide you more information.

    I’m having this issue too – I’ve applied a new ACF group to a custom post type, but it doesn’t show up when I go to create/edit an instance of that post type. If I pull down the ‘Screen options’ tab at the top of the admin page, and toggle my ACF group off then on, the field then appears.

    i am having a similar issue with 3.5.7.2 and WP 3.5. i am able to add a field group, but am not able to add a single field to the group. Anyone else still experiencing this? Please, fix! Thanks!

    i retract my statement … seems i had a conflict with another plugin.

    i have same problem πŸ™ 3.5.8.1 the boxes disappared…

    same problem here. I have no plugin conflict, but the latest release 3.5.8.1 seems to not work with the latest version of WordPress 3.5.1.

    I have same problem running 3.5.1. shame – it looks perfect for what I’m trying to do.

    I also had this issue. I resolved it by changing my theme back to twenty eleven and then reactivating my desired theme.

    Hope this helps others.

    Is there already a solution in sight for this problem people? I have the same issue here. Tried changing theme, no effect, checked my files but could not find anything related to php tags, white spaces or anything. Had to revert back to previous version to solve the problem.

    Same problem here.
    Running WP 3.5.1 with legacy Flutter plugin…
    Tested ACF 3.5.8.1, 3.5.4, 3.5.3 versions.

    Same problem here…
    I’m using WP 3.51 with ACF 3.5.8.1

    Hope it will be fixed soon.

    Same problem πŸ™
    WP 3.5.1
    Tested ACF 4.0, 3.5.8.1, 3.5.3 versions.

    I’m having the same problem but I think it has to do with the pagination. I have 23 groups but only 20 are showing and the pagination is not showing up. When I manually force the pagination by adding &paged=2 into the URL bar I do not see the other 3 groups.

    ——

    Update: I thought I was on the most recent version but I was not. Upon updating this issue was fixed.

    I had same problem, and resolved.

    In my case, this problem happens if a custom post type named “post_type” is exists.
    So it works by using other name.

    I had same issue, but I fork the git repo https://github.com/elliotcondon/acf to review the code. In the file field_group.php -> function get_fields appear the query that display the fields in the ACF settings. For any reason when I pass the second parameters directly and diplay the next error

    WordPress database error: [ERROR: unterminated quoted string at or near “‘field\_” LINE 1: …M wp_postmeta WHERE post_id = 29 AND meta_key ILIKE ‘field\_ ^]
    SELECT meta_key FROM wp_postmeta WHERE post_id = 29 AND meta_key LIKE ‘field\_

    For this reason add to: SELECT meta_key FROM $wpdb->postmeta WHERE post_id = %d AND meta_key LIKE 'field\_%%' add this to the code
    SELECT meta_key FROM $wpdb->postmeta WHERE post_id = %d AND meta_key LIKE 'field\_%%'

    check this out here https://github.com/patojimenez/acf/compare/elliotcondon:master…master

    Pdt: Sorry my english is very bad, but I have to share this solution.

Viewing 15 replies - 16 through 30 (of 32 total)
  • The topic ‘New custom fields not displaying’ is closed to new replies.