• Resolved yid

    (@vexyos)


    Hello,

    On my wordpress, when i use ACF Extended, there is a bug on category/tag pages: the button to create a new one is missing.

    My wordpress is on version 6.1 with ACF Extended 0.8.8.10 and php 8.1.

    I have another site with wordpress 6.0.3 with ACF Extended 0.8.8.9 and php 8.1.

    So maybe the bug is coming with the new 0.8.8.10 version on php 8.1 ?

    Thanks you.

    • This topic was modified 2 years, 4 months ago by yid.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the feedback!

    The Enhanced UI module improves a lot of admin screens, including the Admin Terms screen. To do so, it moves some elements around, including the “Add New Category” button.

    If the button is missing, it’s most likely because of a third party plugin also edit/move elements on this screen. I would recommend to try to disable your plugins one by one at the exception of ACF/ACF Extended, until you find which one is causing the issue. If you could tell me the plugin and its version, I could check it and add a fix in the next patch.

    If you want to disable this module, you can simply use the following code. This will leave the Admin Screens as in native WordPress.

    add_action('acf/init', 'my_acfe_modules');
    function my_acfe_modules(){
    
        // Disable Enhanced UI
        acf_update_setting('acfe/modules/ui', false);
        
    }

    Hope it helps!

    Have a nice day!

    Regards.

    Thread Starter yid

    (@vexyos)

    Hello Konrad,

    Thanks for your fast reply.

    This is some test i have done:
    – With only ACF extended 0.8.8.10 active and php 8.1: no add a category button.
    – With only ACF extended 0.8.8.10 active and php 7.4: no problem.
    – With only ACF extended 0.8.8.9 active and php 8.1: no problem.

    I think the bug come with v0.8.8.10 on php 8.

    Thanks you,
    Have a nice day.

    • This reply was modified 2 years, 3 months ago by yid.
    • This reply was modified 2 years, 3 months ago by yid.
    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the feedback!

    The Enhanced UI “Add Category/Tag” uses Javascript to move elements around, so the PHP version has no incidence on it.

    Here is a video testing Categories/Tags with PHP 7.4, 8.0.1 and 8.1. (switching version takes some seconds in the video).

    Maybe using a different PHP version has an impact on a third party plugin which has an incompatibility issue with the module?

    Can you please try the steps I described in my previous answer?

    I would recommend to try to disable your plugins one by one at the exception of ACF/ACF Extended, until you find which one is causing the issue. If you could tell me the plugin and its version, I could check it and add a fix in the next patch.

    Thanks!

    Regards.

    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Any news?

    Regards.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘ACF Extended hide new category/tag buttons’ is closed to new replies.