Hello,
Thanks for the feedback! As I’m not a Learndash/CPT UI user, it’s kinda hard for me to understand what the problem is.
Can you please share some screenshots using https://imgur.com and show me:
- What is working in Learndash + CPT UI + ACF Extended disabled
- What is not working in Learndash + CPT UI + ACF Extended enabled
Thanks!
Regards.
Hello,
thanks for your quick response. Hope the links work
activated
deactivated
Regards.
Hello,
Thanks for the screenshots!
ACF Extended add UI enhancements for WordPress admin. Taxonomies are now unified, and look like Post Types. So instead of having the “Add new category” panel on the left, it’s now embed inside the “Add new category” button near the Taxonomy Title. See screenshot: https://i.imgur.com/GZqLhhM.jpg
On your screenshot, it looks like the taxonomy title & “Add new category” button are hidden by the “Dynamic Content for Elementor” alert. See screenshot: https://i.imgur.com/LcYei96.png
Disabling that alert should display the Category title & “Add new” button. An another solution is to disable ACF Extended UI enhancements. To do that you can add the following code in your functions.php file:
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Disable Enhanced UI (Taxonomies, Users, Settings)
acf_update_setting('acfe/modules/ui', false);
}
Have a nice day!
Regards.
Hey,
thanks a lot – your code works perfect!!!
Great support
Kind Regards.