Home › Forums › Backend Issues (wp-admin) › how can I disable the parent category to be selected › Reply To: how can I disable the parent category to be selected
Hi @saulo
You should be able to remove it by using Javascript like this:
add_action('acf/input/admin_footer', 'my_acf_disable_taxonomy_parent');
function my_acf_disable_taxonomy_parent() {
?>
<script type="text/javascript">
(function($) {
$(document).ready(function(){
$(".acf-field-1234567890abc ul.acf-checkbox-list > li > label > input").remove();
});
})(jQuery);
</script>
<?php
}
Where ‘field-1234567890abc’ is the field key.
I hope this helps. 🙂
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.