Support

Account

Home Forums Front-end Issues ACF form labels are backwards Reply To: ACF form labels are backwards

  • I wrote this hack (in javascript) to “fix” the issue;

    
    $('form label > input').each(function() {
        $(this).insertBefore($(this).parent());
    });
    $('form.acf-form label').each(function() {
    	$(this).attr('for', $(this).prev('input').prop('id'));
    });