Merhaba, müşteriler için oluşturduğum özel alanları admin panelinde fatura ekranında göremiyorum. Konuyla ilgili nasıl bir yol izlenebilir.
Aşağıda ki, kodu order_info.twig eklediğim zaman çalıştıramadım.


<div class="table"> {% if account_custom_fields %}
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<td colspan="2">{{ text_account_custom_field }}</td>
</tr>
</thead>
<tbody>

{% for custom_field in account_custom_fields %}
<tr>
<td>{{ custom_field.name }}</td>
<td>{{ custom_field.value }}</td>
</tr>
{% endfor %}
</tbody>

</table>
</div>
{% endif %}
{% if payment_custom_fields %}
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<td colspan="2">{{ text_payment_custom_field }}</td>
</tr>
</thead>
<tbody>

{% for custom_field in payment_custom_fields %}
<tr>
<td>{{ custom_field.name }}</td>
<td>{{ custom_field.value }}</td>
</tr>
{% endfor %}
</tbody>

</table>
</div>
{% endif %}