Support

Account

Home Forums Front-end Issues Edit attribute page Reply To: Edit attribute page

  • Hi @mikealkeal

    I’m afraid I don’t understand your query. Could you please explain it to me in more details?

    If you want to order the fields, you can always order it in the “fields” option like this:

    $field = array(
        'fields' => array(
            'field_1234567890abc', // this will be shown first
            'field_abcdefghijklm', // this will be shown second
        ),
        'form' => false
    );

    Where “field_1234567890abc” and “field_abcdefghijklm” are the field keys.

    I hope this helps 🙂