Support

Account

Home Forums ACF PRO How to disable drag&drop ordering function on a specific Repeaters field? Reply To: How to disable drag&drop ordering function on a specific Repeaters field?

  • Just for reference,
    this solution is working, but I don’t wanna modify ACF PRO.

    1. apply class ‘disable-sorting’ to a Repeaters field by a normal ACF PRO field group UI.
    2. add codes below inside of ‘_mouseenter :function( e ){}’ in ‘acf-pro-input.min.js’.

    if( $( this.$tbody.closest('.acf-field-repeater') ).hasClass('disable-sorting') ){
    	return;
    }