I want to change the order in step 1 of the checkout. I want to have “order without an account” on the left side and the other two (sign up with an account and register an account on the right side. I tried to change some things in step_one.tpl but that didn't works. Can anybody help and point out what to change in the file bel
```php
{* $Id$ *}
1.
{if $complete && !$edit}
![]()
{/if}
{if ($settings.General.disable_anonymous_checkout == "Y" && !$auth.user_id) || ($settings.General.disable_anonymous_checkout != "Y" && !$auth.user_id && !$contact_info_population) || $smarty.session.failed_registration == true}
{assign var="title" value=$lang.please_sign_in}
{else}
{if $auth.user_id != 0}
{assign var="login_info" value="`$user_data.firstname` `$user_data.lastname`"}
{else}
{assign var="login_info" value=$lang.guest}
{/if}
{assign var="title" value="`$lang.signed_in_as` `$login_info` - `$user_data.email`"}
{/if}
{hook name="checkout:edit_link_title"}
{$title}
{/hook}
{assign var="curl" value=$config.current_url|fn_query_remove:"login_type"}
{if ($settings.General.disable_anonymous_checkout == "Y" && !$auth.user_id) || ($settings.General.disable_anonymous_checkout != "Y" && !$auth.user_id && !$contact_info_population) || $smarty.session.failed_registration == true}
{include file="views/checkout/components/checkout_login.tpl" checkout_type="one_page"}
{include file="views/profiles/components/profiles_account.tpl" nothing_extra="Y" location="checkout"}
{include file="views/profiles/components/profile_fields.tpl" section="C" nothing_extra="Y"}
{hook name="checkout:checkout_steps"}{/hook}
{if $settings.Image_verification.use_for_register == "Y"}
{include file="common_templates/image_verification.tpl" id="register" align="center"}
{/if}
{include file="buttons/button.tpl" but_name="dispatch[checkout.add_profile]" but_text=$lang.continue}
{$lang.or}
{include file="buttons/button.tpl" but_href=$curl but_onclick="$('#step_one_register').hide(); $('#step_one_login').show();" but_text=$lang.cancel but_role="tool"}
{else}
{if $edit}
{include file="views/profiles/components/profile_fields.tpl" section="C" nothing_extra="Y" email_extra=$smarty.capture.email_extra}
{hook name="checkout:checkout_steps"}
{include file="buttons/button.tpl" but_name="dispatch[checkout.update_steps]" but_text=$but_text}
{/hook}
{/if}
{/if}
{if !$edit}
{hook name="checkout:edit_link"}
{include file="buttons/button.tpl" but_href="checkout.checkout?edit_step=step_one&from_step=`$edit_step`" but_rev="checkout_steps" but_meta="cm-ajax" but_text=$lang.change but_role="tool"}
{/hook}
{/if}
Thank you in advance.
Sincerely,
Edwin Koop