Support

Account

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.