Hi, please advise in what file can I find code of fields that are required for order?
For example, I need only text input and phone number in shipping info sector, so I want to make other fields not required.
Example of code i need:
<select name="shipping_country" class="form-select form-control" required="" x-model="information.shipping_address.country">
<option value="">Виберіть країну</option>
<template x-for="(country, index) in countries" :key="country.value">
<option :value="country.value" x-text="country.label" :selected="country.value === information.shipping_address.country || countries.length === 1"></option>
</template>
</select>
Thanks in advance.