Home › Forums › Backend Issues (wp-admin) › Load dynamically fields on select change › Reply To: Load dynamically fields on select change
Well I tried what you told me but nothing happens:
jQuery(function($){
$(document).on('change','#custom_post_template', function(){
console.log(acf.screen);
acf.screen.cpt_template = $(this).val();
$(document).trigger("acf/update_field_groups");
console.log(acf.screen);
});
});
As I think acf.screen are the options, in the plugin I have the cpt_template as the “slug”
function acf_location_rules_types( $choices ){
$choices['Post']['cpt_template'] = __('Post Type Template','acf-cpt');
return $choices;
}
Also, I don’t know if I have to include the javascript (above) like you have here:
http://www.advancedcustomfields.com/resources/tutorials/adding-custom-javascript-jquery-for-fields/
Or in my own script (as I’m doing it now).
Thanks for your help.
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.