Support

Account

Home Forums ACF PRO post_title issue remains after 5.4.2 AJAX loading acf_form Reply To: post_title issue remains after 5.4.2 AJAX loading acf_form

  • That seems to have fixed it! The post_title field now has all of the correct attributes and it appears everything is saving correctly on both my live site and test site. Thanks a million, John!

    My test function from above now works and looks like:

    
    function test_cms_form() {
    	echo "In AJAX";
    	_acf_form_register_fields();
    	acf_form( array('post_id'=>14,'post_title'=>true) );
    	die();
    }
    

    I wonder what happened in the 5.4.0 update that made this addition necessary (that seems to be the first version where post_title wasn’t rendered properly) and if this is a fix that can be implemented in a future release to ensure it works for others.