Hi ERPNexters,
I changed my default Address Template from
{{ address_line1 }}
{% if address_line2 %}{{ address_line2 }}
{% endif -%}
{{ city }}
{% if state %}{{ state }}
{% endif -%}
{% if pincode %} PIN: {{ pincode }}
{% endif -%}
{{ country }}
{% if phone %}Phone: {{ phone }}
{% endif -%}
{% if fax %}Fax: {{ fax }}
{% endif -%}
{% if email_id %}Email: {{ email_id }}
{% endif -%}
To
{{ address_line1 }} || {% if address_line2 %}{{ address_line2 }} || {% endif -%}{{ city }}
{% if gst_state %}{{ gst_state }}{% endif -%},
{% if gst_state_number %}State Code: {{ gst_state_number }}
{% endif -%}
{% if pincode %}PIN: {{ pincode }}{% endif -%} || {{ country }}
{% if phone %}Phone: {{ phone }}|| {% endif -%} {% if fax %}Fax: {{ fax }}
{% endif -%}
{% if email_id %}Email: {{ email_id }}
{% endif -%}
{% if gstin %}GSTIN: {{ gstin }}
{% endif -%}
But it is still not showing the new format.
What am i doing wrong?
Thanks for giving me some pointers!
Regards