Support

Account

Home Forums ACF PRO Huge JavaScript performance issues with repeater fields when over ~100 fields Reply To: Huge JavaScript performance issues with repeater fields when over ~100 fields

  • YAY! I think I’ve solved it.

    I just edited

    wp-content/plugins/advanced-custom-fields-pro/input.js

    and commented out this

    	$(window).load(function(){
    		
    		// action for 3rd party customization
    
    		//acf.do_action('load', $('body'));
    
    	});

    and

    	$(document).ready(function(){
    		
    		// action for 3rd party customization
    
    		//acf.do_action('ready', $('body'));
    
    	});

    the repeater fields still work, and the JavaScript timeout is gone. Even though it’s 114k lines of html…

    What could this mess up? What am I missing doing this?