This tpl is using for displaying the new checkout shipping/payment address input fields in checkout_shipping_address.php and checkout_payment_address.php pages.

If you want to create a new style for the checkout new shipping/payment address input fields, you can create a custom template of your choice and upload it to the themes//checkout/checkout_new_address.tpl. If the checkout folder is not present you can create a folder with name checkout.

We have a custom file custom_add.php in themes/functions/ folder which will be available for all files. If you want a new template variable for all checkout section, you can define that on custom_add.php.

Here is the template variables used for checkout new shipping/payment address fields.
 
Variables used in checkout_new_address.tpl
 
{literal}{{/literal}$city_field_text{literal}}{/literal} To display the input field for City.
 
{literal}{{/literal}$company_field_value{literal}}{/literal} To display the input field for Company.
 
{literal}{{/literal}$country_field_text{literal}}{/literal} To display the dropdown for selecting the Country.
 
{literal}{{/literal}$firstname_field_value{literal}}{/literal} To display the input field for First name.
 
{literal}{{/literal}$gender_field_value{literal}}{/literal} To display the input field for gender.
 
{literal}{{/literal}$lastname_field_value{literal}}{/literal} To display the input field for Last name.
 
{literal}{{/literal}$postcode_field_text{literal}}{/literal} To display the input field for Post code.
 
{literal}{{/literal}$state_field_text{literal}}{/literal} To display the input field for State.
 
{literal}{{/literal}$street_address_field_text{literal}}{/literal} To display the input field for street address.
 
{literal}{{/literal}$subrub_field_text{literal}}{/literal} To display the input field for suburb.
 
{literal}{{/literal}$title_entry_city{literal}}{/literal} To display the title for City.
 
{literal}{{/literal}$title_entry_company{literal}}{/literal} To display the title for Company.
 
{literal}{{/literal}$title_entry_country{literal}}{/literal} To display the title for Country.
 
{literal}{{/literal}$title_entry_firstname{literal}}{/literal} To display the title for First name.
 
{literal}{{/literal}$title_entry_gender{literal}}{/literal} To display the title for gender .This will show only when Gender is set to true from admin-->C advanced-->configuration-->Enable/disable features-->Customer Details tab.
 
{literal}{{/literal}$title_entry_lastname{literal}}{/literal} To display the title for Last name.
 
{literal}{{/literal}$title_entry_postcode{literal}}{/literal} To display the title for Post code.
 
{literal}{{/literal}$title_entry_state{literal}}{/literal} To display the title for State. This will show only when state is set to true from admin-->C advanced-->configuration-->Enable/disable features-->Customer Details tab.
 
{literal}{{/literal}$title_entry_street_address{literal}}{/literal} To display the title for street address.
 
{literal}{{/literal}$title_entry_subrub{literal}}{/literal} To display the title for Suburb. This will show only when subrub is set to true from admin-->C advanced-->configuration-->Enable/disable features-->Customer Details tab.
 
Sidst opdateret d. .