X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   checkout button - same design for both - pls help. (https://forum.x-cart.com/showthread.php?t=61306)

SoniaK 10-20-2011 03:39 PM

checkout button - same design for both - pls help.
 
1 Attachment(s)
Vivid Dream Acquamarine design.
On the checkout page there are two different buttons for 'checkout', one on the top near to 'continue shopping' and the second one on the bottom of the cart. these 2 buttons does not have the same design. I would like to have the same design; this on the top, with the cart and not the simple one.
Please help me in this matter. on the 'button.tpl' could not identify which lines I need to modify.
Thank you very much for your help.
Sonia

JWait3 10-21-2011 05:53 AM

Re: checkout button - same design for both - pls help.
 
You don't say whether you are using "one page" or "fast lane" checkout but I think what you are looking for is in the common_files/modules/ "whichever checkout you use"/ content.tpl. Its the part that says
Code:

<div class="checkout-buttons">
    {if not $std_checkout_disabled}
      {include file="customer/buttons/button.tpl" button_title=$lng.lbl_checkout style="div_button" href="cart.php?mode=checkout" additional_button_class="checkout-3-button"}
    {/if}
    {include file="customer/buttons/button.tpl" button_title=$lng.lbl_continue_shopping style="div_button" href=$stored_navigation_script additional_button_class="checkout-1-button"}
  </div>
  <div class="clearing"></div>


Note: the above code is from 4.4.3 but should be the same as 4.4.2

The other button is in skin/vivid_dreams_aquamarine/customer/main/cart.tpl.
Code:

<div class="right-buttons-row buttons-row">

            {if not $std_checkout_disabled}
            <div class="checkout-button">
              {include file="customer/buttons/button.tpl" button_title=$lng.lbl_checkout  href="cart.php?mode=checkout" additional_button_class="main-button"}
            </div>
            {/if}

            {if $active_modules.Special_Offers}
            <div class="button-separator"></div>
            {include file="modules/Special_Offers/customer/cart_checkout_buttons.tpl" style="link"}
          {/if}

          </div>

          <div class="clearing"></div>


SoniaK 11-15-2011 08:13 AM

Re: checkout button - same design for both - pls help.
 
Thank you for your quick message.

I'm confused. I'm sorry but I do not understand what I should do with codes you indicate.
I have 'one page AJAX checkout on my settings.
which part should I replace with what?

Many thanks for your help.

Sonia


All times are GMT -8. The time now is 01:44 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.