Jump to content

Customization of Checkout Process


darkfibersys

Recommended Posts

I'm currently using the default template - I tried to switch the order, but that did not work...

are you sure?? I just tried it and it worked fine.. :)

 

in configureproductdomain.tpl, there are four {if} blocks which control the order in which they're displayed (lines 25-65)...

 

{if $registerdomainenabled}
...
{/if}

{if $transferdomainenabled}
...
{/if}

{if $owndomainenabled}
...
{/if}

{if $subdomains}
...
{/if}

all you should need to do is move the blocks of {if} code into the specific order you want to remove - so in your case of using the client's domain first, you would change the order as...

 

{if $owndomainenabled}
...
{/if}

{if $registerdomainenabled}
...
{/if}

{if $transferdomainenabled}
...
{/if}

{if $subdomains}
...
{/if}

if you do that, then you should end up with the screen below.

 

http://prntscr.com/2x77dx

 

possibly you may need to empty your templates_c folder and/or browser cache to see the change, but it should work. :idea:

Edited by brian!
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated