Jump to content

Removing 2016 - CLASSIC - PrestaShopTM from checkout stage prestashop 1.7.0.5


Recommended Posts

I found a solution!  :P

The problem is in template file checkout.tpl

In my theme, original checkout.tpl is build like different page and not extend default layout.

I change the code and now my checkout.tpl extends default layout {extends file=$layout}

Maybe ... other tp files have same problem, but solution is this for me.

{extends file=$layout}

{block name='content'}
        <section id="content">
          <div class="row cart-grid">
            <div class="col-md-8">
              {render file='checkout/checkout-process.tpl' ui=$checkout_process}
            </div>
            <div class="col-md-4">

              {include file='checkout/_partials/cart-summary.tpl' cart = $cart}

              {hook h='displayReassurance'}
            </div>
          </div>
        </section>
      {/block}
  • Like 1
Link to comment
Share on other sites

 

I found a solution!  :P

The problem is in template file checkout.tpl

In my theme, original checkout.tpl is build like different page and not extend default layout.

I change the code and now my checkout.tpl extends default layout {extends file=$layout}

Maybe ... other tp files have same problem, but solution is this for me.

{extends file=$layout}

{block name='content'}
        <section id="content">
          <div class="row cart-grid">
            <div class="col-md-8">
              {render file='checkout/checkout-process.tpl' ui=$checkout_process}
            </div>
            <div class="col-md-4">

              {include file='checkout/_partials/cart-summary.tpl' cart = $cart}

              {hook h='displayReassurance'}
            </div>
          </div>
        </section>
      {/block}

thats good man

 

wheres the template file checkout.tpl located please

Link to comment
Share on other sites

 

I found a solution!  :P

The problem is in template file checkout.tpl

In my theme, original checkout.tpl is build like different page and not extend default layout.

I change the code and now my checkout.tpl extends default layout {extends file=$layout}

Maybe ... other tp files have same problem, but solution is this for me.

{extends file=$layout}

{block name='content'}
        <section id="content">
          <div class="row cart-grid">
            <div class="col-md-8">
              {render file='checkout/checkout-process.tpl' ui=$checkout_process}
            </div>
            <div class="col-md-4">

              {include file='checkout/_partials/cart-summary.tpl' cart = $cart}

              {hook h='displayReassurance'}
            </div>
          </div>
        </section>
      {/block}

found the heckout.tpl but didnt remove the

2016 - CLASSIC - PrestaShopTM

for me :(

Link to comment
Share on other sites

tip: if you want to customize checkout process, even to address level we use this opc module that has super rich configuration, we love this one:

https://addons.prestashop.com/en/express-checkout-process/8503-one-page-checkout-ps-easy-fast-intuitive.html

 

To be honest?  Trying to modify native PS reg/checkout is dangerous....lol  so maybe look for more elegant module solution.

Link to comment
Share on other sites

  • 4 weeks later...

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...