• Resolved pmapoy

    (@pmapoy)


    Hi ACF Extended Support, We can’t update our plugin to the latest version (0.8.8.10) because the Tab Layout, when nested, has had a frontend issue since version 0.8.7.6. So, today, we’re stuck using version 0.8.7.5 because it was the last stable version that could provide us with our intended output from the plugin.

    For a clearer explanation, please click on the link below to see the screenshot of our issue. Thank you.

    Screenshot: https://bit.ly/3XoPy7g

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the feedback!

    I tested this Field Group configuration and it works correctly on the Admin Post Screen and on Front-End Forms. Here is the video of my test.

    However, looking at your screenshot, it suggested that you display your Field Group on the Admin User screen (since the field group name is “New User Form”). In fact, I was able to reproduce the issue on the Admin User Screen. See screenshot.

    The CSS rule responsible of this bug is included within the Enhanced UI module. That CSS rule is only included in the Admin User Screen, so it shouldn’t affect other screens (such as Post Edit Screen or Front-End Form).

    Since your report suggest that this bug occurs on the front-end, can you please confirm that it only occurs on the Admin User Screen?

    Regarding the Enhanced UI on User Screen, I’ll add a fix in the next patch. In the meantime, you can fix it by yourself by adding this code in your theme’s functions.php file:

    // Fix ACFE <= 0.8.8.10 User Screen tabs
    add_action('admin_print_scripts', 'my_acfe_fix_enhanced_ui_user_tabs');
    function my_acfe_fix_enhanced_ui_user_tabs(){
        ?>
        <style>
        .wrap form#createuser .acf-tab-wrap,
        .wrap form#your-profile .acf-tab-wrap {
            position: unset;
        }
        </style>
        <?php
    }

    Sorry for the inconvenience.

    Have a nice day!

    Regards.

Viewing 1 replies (of 1 total)

The topic ‘ACF Tab Layout Issue when Nested’ is closed to new replies.