Country option tags

Das country_option_tags Objekt erstellt ein <option> Tag für jedes Land, das als Versandzone auf der Versand Seite des Administrators angezeigt wird.

Ein Attribut mit der Bezeichnung data-provinces wird für jedes <option> gesetzt und enthält ein JSON-kodiertes Array der Unterregionen des Landes. Wenn ein Land keine Unterregionen hat, wird für das Attribut data-provinces ein leeres Feld gesetzt.

<section class="callout-green">
Das country_option_tags-Objekt sollte in
<select>
	 tags.
</select>
</section>
<!-- Store ships only to Deutschland and the United Kingdom -->
<select name="country">
  {{ country_option_tags }}
</select>
<!-- Store ships only to Deutschland and the United Kingdom -->
<select name="country">
  <option value="---" data-provinces="[]">---</option>
  <option value="Deutschland" data-provinces="[['Nordrhein-Westfalen','Nordrhein-Westfalen'],['British Columbia','British Columbia'],['Meklenburg-Vorpommern','Meklenburg-Vorpommern'],['Bayern','Bayern'],['Sachsen','Sachsen'],['Sachen-Anhalt','Sachen-Anhalt'],['Saarland','Saarland'],['Brandenburg','Brandenburg'],['Niedersachsen','Niedersachsen'],['Thüringen','Thüringen'],['Rheinland-Pfalz','Rheinland-Pfalz'],['Sachsen','Sachsen'],['Schleswig-Holstein','Schleswig-Holstein']]">Deutschland</option>
  <option value="United Kingdom" data-provinces="[]">United Kingdom</option>
</select>
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.