Jump to content

[SOLVED] Remove ORDER STEPS


robkwal

Recommended Posts

Hi,

I would like to remove the order steps from the checkout and login procedure...

I have removed:


{include file=$tpl_dir./order-steps.tpl}, but do i need to remove the following to?

{assign var='current_step' value='summary'}

Kind Regards,

Rob

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...

Anyone be able to help me with the above?

Just to re-itterate (and possibly make it clearer what I was originally asking for)

if you go via the login button - it takes you to my-account.php, but unfortunatley it contains the checkout steps at the top, which is more than often not required at this stage of the cusomters experience on the site. I realise removing the ordersteps from my-account will solve this, but when the customer comes to place an order later on and go to log-in.. the order steps will disappear, but in this scenario (going via the checkout) they are required.

Is there any way in which I can only keep the orders steps active if going via the checkout?

Thanks in advance

Link to comment
Share on other sites

Change lines 25-26 of authentication.tpl in your theme's directory from:

{assign var='current_step' value='login'}
{include file=$tpl_dir./order-steps.tpl}



to:

{if $back == 'order.php?step=1'}
  {assign var='current_step' value='login'}
  {include file=$tpl_dir./order-steps.tpl}
{/if}

Link to comment
Share on other sites

  • 1 year later...

Hi Rocky, can you help me with some step by step instructions on how to remove the "Order Summary page in my shop"? I would like my customer to go directly to the paypal info/credit card info page when they click the paypal button....

 

thanks" I'm new to all this"

 

dp

  • Like 1
Link to comment
Share on other sites

  • 1 year later...

Change lines 25-26 of authentication.tpl in your theme's directory from:

 

{assign var='current_step' value='login'}
{include file=$tpl_dir./order-steps.tpl}

 

to:

 

{if $back == 'order.php?step=1'}
  {assign var='current_step' value='login'}
  {include file=$tpl_dir./order-steps.tpl}
{/if}

 

Hi Rocky, this solution works for 1.4.

 

Do you have one for 1.5 ?

 

Thank you in advance.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...