Hello,
Thanks for the feedback. Can you please sens me a screenshot of your Post Edit & Taxonomy Edit screen?
There’s probably a compatibility problem with an another plugin.
Regards.
Thank for your quick reply.
Here is the two screenshot :
https://ibb.co/nsNCh1v
https://ibb.co/M85q4MR
Here is the list plugin I’m using :
– Advanced Custom Fields PRO
– Advanced Custom Fields: Extended
– Insert Headers and Footers
– SVG Support
Hello!
Thanks for the screenshots! Hmmm, that’s really weird. In the Settings view, you should have a sidebar with an “Update button”, and in the Taxonomy view you should have a “Add new” button right next to the Title “Catégories”.
Can you please open you browser console and check if you don’t have a JS error? On Chrome: Right click in the page > Inspect, or CTRL + Shift + J.
Thanks in advance.
Regards.
I have those errors on the permalink page :
– Uncaught SyntaxError: Unexpected end of input; options-permalink.php:5
– Uncaught SyntaxError: Unexpected end of input; options-permalink.php:6
And those on the taxonomy page :
– Uncaught SyntaxError: Unexpected end of input; edit-tags.php:5
– Uncaught SyntaxError: Unexpected end of input; edit-tags.php:8
Hello,
Yeah, that’s the problem. As you have a JS error, ACF Extended cannot correctly inject the sidebar with “Update” button, and the “Add new” button in the Taxonomy view.
Two solutions:
- Fix the JS issue (which you should do anyway)
- Disable the UI enhancements of ACF Extended (but the JS error will remain)
Can you please share a screenshot of your JS console? There is most likely a hint of what JS file is problematic. Additionally, you can join the ACF Extended community on Slack, I’m always connected there, and it will be easier to discuss/share screenshots in private there.
Here is an invitation link: https://join.slack.com/t/wpacf/shared_invite/enQtODc2MjczMzM3NzQ1LTQxNmY2ZGY3OTU2NDkxNTliYmNhMmY1NDMwZGM4NmYxNzgwZTI5MDUzMDFlMGQ5YzcwNDc0ZWM0MDVmODI4NmI
Let me know what you decide to do!
Regards.
I found why the permalink button was not shown.
I was using a function to minify HTML and it was somehow deleting codes inside the wordpress core files.
I deleted my function and the permalink’s save settings button finally appear on the screen as before, same for the taxonomy’s add terms button.
For those who are interested, my function to minify HTML came from here.
Thanks for your helpful answers.
Best regards, Mathias.
I forgot to mark it as resolved.
Hello,
Great! Just in case you have any other problem with the UI, you can use the following code to disable the ACF Extended UI Enhancements:
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Enhanced UI (Taxonomies, Users, Settings)
acfe_update_setting('modules/ui', false);
}
Have a nice day!
Regards.