zakupson Posted May 15, 2018 Share Posted May 15, 2018 (edited) Cześć, jak mogę usunąć "Użyj tego adresu także do faktury" w adresach przy realizacji zamówienia? Usunąć bądź ukryć, jeżeli ktoś poda kod CSS, będę wdzięczny. Prestashop 1.7.3 Edited May 15, 2018 by zakupson (see edit history) Link to comment Share on other sites More sharing options...
0 zakupson Posted May 15, 2018 Author Share Posted May 15, 2018 bump Link to comment Share on other sites More sharing options...
0 Piotr K. Posted May 16, 2018 Share Posted May 16, 2018 Jeśli u Ciebie to pole ma przypisaną jakąś klasę to możesz w css, ale domyślnie nie ma - trzeba edytować plik tpl (chyba address-form.tpl). Link to comment Share on other sites More sharing options...
0 zakupson Posted May 16, 2018 Author Share Posted May 16, 2018 1 hour ago, Piotr K. said: Jeśli u Ciebie to pole ma przypisaną jakąś klasę to możesz w css, ale domyślnie nie ma - trzeba edytować plik tpl (chyba address-form.tpl). ok, a mógłbyś podać plus minus, która linijka? Link to comment Share on other sites More sharing options...
0 zakupson Posted May 17, 2018 Author Share Posted May 17, 2018 bump Link to comment Share on other sites More sharing options...
0 Piotr K. Posted May 18, 2018 Share Posted May 18, 2018 +24 -27 1 Link to comment Share on other sites More sharing options...
0 zakupson Posted May 19, 2018 Author Share Posted May 19, 2018 18 hours ago, Piotr K. said: +24 -27 Udało mi się usunąć, dziękuję bardzo za pomoc. Link to comment Share on other sites More sharing options...
0 Piotr89 Posted November 3, 2020 Share Posted November 3, 2020 Witam, Jestem zupełnym żółtodziobem. Czy moglibyście pokazać jak powinien wyglądać kod po zmianie? Przed zmianą: " {block name="address_form_footer"} <footer class="form-footer clearfix"> <input type="hidden" name="submitAddress" value="1"> {block name='form_buttons'} <button class="btn btn-primary float-xs-right" type="submit" class="form-control-submit"> {l s='Save' d='Shop.Theme.Actions'} </button> {/block} </footer> {/block} " Z góry dziękuję za pomoc. Piotr Link to comment Share on other sites More sharing options...
0 rrataj Posted November 4, 2020 Share Posted November 4, 2020 Powinieneś zamienić w pliku /themes/nazwa_szablonu/templates/checkout/partials/address_form.tpl: z tego: {block name='form_fields' append} <input type="hidden" name="saveAddress" value="{$type}"> {if $type === "delivery"} <div class="form-group row"> <div class="col-md-9 col-md-offset-3"> <input name = "use_same_address" id="use_same_address" type = "checkbox" value = "1" {if $use_same_address} checked {/if}> <label for="use_same_address">{l s='Use this address for invoice too' d='Shop.Theme.Checkout'}</label> </div> </div> {/if} {/block} na to: {block name='form_fields' append} <input type="hidden" name="saveAddress" value="{$type}"> {/block} Link to comment Share on other sites More sharing options...
0 Piotr89 Posted November 5, 2020 Share Posted November 5, 2020 Dziękuję, ale niestety, dalej to nie rozwiązuje kwestii :/ O ile checkbox i napis 'Użyj tego adresu także do faktury' się nie wyświetlają, to po wpisaniu adresu dostawy i kliknięciu 'DALEJ', przechodzi do formularza z danymi do faktury :/ Link to comment Share on other sites More sharing options...
0 rrataj Posted November 5, 2020 Share Posted November 5, 2020 1 hour ago, Piotr89 said: Dziękuję, ale niestety, dalej to nie rozwiązuje kwestii 😕 O ile checkbox i napis 'Użyj tego adresu także do faktury' się nie wyświetlają, to po wpisaniu adresu dostawy i kliknięciu 'DALEJ', przechodzi do formularza z danymi do faktury 😕 Ok, zamiast: {block name='form_fields' append} <input type="hidden" name="saveAddress" value="{$type}"> {/block} Spróbuj tego (aczkolwiek nie jestem pewien czy zadziała na 100%): {block name='form_fields' append} <input type="hidden" name="saveAddress" value="{$type}"> {if $type === "delivery"} <input type="hidden" name="use_same_address" id="use_same_address" value="1"> {/if} {/block} 1 Link to comment Share on other sites More sharing options...
0 Piotr89 Posted November 6, 2020 Share Posted November 6, 2020 Bardzo dziękuję. Przetestowałem i działa! Link to comment Share on other sites More sharing options...
Question
zakupson
Cześć, jak mogę usunąć "Użyj tego adresu także do faktury" w adresach przy realizacji zamówienia?
Usunąć bądź ukryć, jeżeli ktoś poda kod CSS, będę wdzięczny. Prestashop 1.7.3
Link to comment
Share on other sites
11 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now