• After upgrading ACF to Pro 5.0.2 (WP 3.9.1, Tabify 0.8.1):

    In Tabify configuration screen, all the ACF field groups are shown on every cpt no matter their rules. Despite that everything seems ok at the first edit.php page load. The problem araise again switching tabs, since Tabify try to force the display of those field groups even if they do not belong to the current post type.

    I just posted the same question in the ACF forum and Tabify Github mirror.
    I’ll keep updating them all.

    https://wordpress.org/plugins/tabify-edit-screen/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Marko Heijnen

    (@markoheijnen)

    This is an issue in ACF and how they now handling the meta boxes. Hopefully they can address the issue.

    Nikho, it’s normal, elliot add a fix to detect all ACF Group field at initialisation. i asked this feature there are few weeks.

    Maybe an enhancement would be to load only ACF Group field based on custom post type

    Thread Starter YuMyo

    (@nikho)

    Sorry sireneweb, I can’t understand how this is working for you.
    In Tabify settings each post type shows all acf’s custom fileds.
    What happen if you save a tab setting ?
    They’ll be included. Then, in edit.php, switching between tabs causes Tabify try loading those fileds. Since they do not belong to that post types, the screen crashes with a never ending attempt to load the (wrongly) “required” fileds.

    Thread Starter YuMyo

    (@nikho)

    Since the error seems being not blocking (post save or update action), I came up with a kind of fix (shame) adding !important to line 52 of global.css in advanced-custom-field-pro/css/global.css
    So turning:

    .acf-visible { display: block; visibility: visible; }
    .acf-hidden { display: none; visibility: visible; }

    in:

    .acf-visible { display: block!important; visibility: visible; }
    .acf-hidden { display: none!important; visibility: visible; }

    prevent inline styles injected by Tabify to overwrite ACF styles.

    There’s still the need to inspect if this could be enough or there’s any other compatibility issue especially concerning data.

    I create tab and put ACF Group field inside, the rest of ACF Group fields stay at the end of all Metabox in Tabs parameters field.

    After when i go in post, page or custom post i see only the ACF Group field based on the location

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Tabify support [ACF 5.0.2]’ is closed to new replies.