Jump to content
  • 0

Przeniesienie zostaw wiadomość w koszyku


kazek445

Question

4 answers to this question

Recommended Posts

  • 0

Możesz użyć flex boxa - poniżej przykład. Zastąp "<!--sposób dostawy-->" i "<!--wiadomosc-->" kodem html elementów które chcesz przenieść 
html:

<div class="checkout-flex-box">
  <div>
    <!--sposób dostawy-->
  </div>
  <div>
    <!--wiadomosc-->
  </div>
</div>

css dla desktop i mobile (max 991px):
 

.checkout-flex-box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.checkout-flex-box > div{
    width:50%;
}
@media (max-width: 991px) {
    .checkout-flex-box{
        flex-direction: column;
    }
    .checkout-flex-box > div{
        width:100%;
    }
}

 

Link to comment
Share on other sites

  • 0

W Prestashop 1.7.8.x i 8.x standardowo powinieneś edytować plik themes/twoj_szablon/templates/checkout/_partials/steps/shipping.tpl

<!--sposób dostawy--> zastąp/skopiuj cały blok {block name='delivery_options'}
<!--wiadomosc--> zastęp/skopiuj <div class="order-options"> z całą zawartością

Klasę checkout-flex-box możesz dopisać do div z klasą form-fields lub dodać <div class="checkout-flex-box"> wewnątrz form-fields. 
Po wykonaniu zmian wyczyść cache. 

Edited by ps_Dominik (see edit history)
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...