remove account signup?

hi,



is there a way to completely remove the account sign up or login screen during the checkout? i would also like to know how the checkout can be further customized without necessarily starting to edit the cs-cart software itself … i want to make sure we can keep upgrading our software.



thanks

b

If I’m understanding you correctly you only want “Checkout As Guest” to show up when a person goes to checkout?

If that is correct then edit your checkout_login.tpl and look at this table at the bottom of the .tpl



Make a backup of file before editing

Remove and/or comment parts in red:

Might need a little more adjusting but I think this gives you the right idea.



Replace this:

```php






{assign var='result_ids' value="'sign_io', 'cart_items','checkout_totals','checkout_steps', 'cart_status'"}
{if $settings.Addons.promotions == 'Y'}
{assign var='result_ids' value=$result_ids|cat:",'convenient_promotion'"}
{/if}
{include file="auth_pages/login.tpl" nothing_extra='Y' form_name='step_one_login_form' form_alias='solf' result_ids=$result_ids checkout_login='Y' on_login_click="solf.callback = function ()$ldelim window.location.hash = '#checkout_top' $rdelim;"}

{if $settings.General.approve_user_profiles != 'Y'}

{$lang.text_dont_have_an_account_title}


{$lang.text_dont_have_an_account_full}
{include file="buttons/button.tpl" but_onclick="fn_switch_checkout_type(true);" but_text=$lang.register}

{/if}
{if $settings.General.disable_anonymous_checkout != 'Y'}

{$lang.text_dont_want_to_register_an_account}


{include file="buttons/button.tpl" but_onclick="fn_switch_checkout_type(false);" but_text=$lang.checkout_as_guest}

{/if}

```

[B]With this:[/B]
```php
{assign var='result_ids' value="'sign_io', 'cart_items','checkout_totals','checkout_steps', 'cart_status'"}





{if $settings.Addons.promotions == 'Y'}
{assign var='result_ids' value=$result_ids|cat:",'convenient_promotion'"}
{/if}
{if $settings.General.disable_anonymous_checkout != 'Y'}

{$lang.text_dont_want_to_register_an_account}


{include file="buttons/button.tpl" but_onclick="fn_switch_checkout_type(false);" but_text=$lang.checkout_as_guest}

{/if}
```