manto666 Posted August 3, 2021 Share Posted August 3, 2021 Hallo, Ich möchte im Checkout die AGB Checkbox deaktivieren und einen Text setzen, dass durch den Abschluss der Bestellung die AGB und Datenschutzbestimmungen akzeptiert werden. Version 1.7.6.9 Vielen Dank Link to comment Share on other sites More sharing options...
rictools Posted August 3, 2021 Share Posted August 3, 2021 Wenn ich mich richtig erinnere hatte ich das damals so gelöst daß ich in der tpl-Datei der Checkbox ein "clicked" mitgegeben habe und sie per display: none; versteckt habe. Link to comment Share on other sites More sharing options...
manto666 Posted August 4, 2021 Author Share Posted August 4, 2021 Kannst du mir helfen wo ich das ändern muss und wie?https://shop.firedog.ch/Bestellung Vielen Dank Link to comment Share on other sites More sharing options...
rictools Posted August 4, 2021 Share Posted August 4, 2021 (edited) Du mußt per CSS (am besten in der custom.css) das Ankreuzfeld ausblenden: input[name="psgdpr"] { display: none; } Dann mußt du die passende tpl-Datei raussuchen und den Code für das Ankreuzfeld ergänzen um: checked="checked" Eigentlich müßte das so funktionieren, wenn ich mich richtig erinnere ... Edited August 6, 2021 by rictools custom.css, nicht custum ... (see edit history) Link to comment Share on other sites More sharing options...
manto666 Posted August 6, 2021 Author Share Posted August 6, 2021 Sorry aber ich finde die richtige tpl nicht mit der checkbox. Link to comment Share on other sites More sharing options...
rictools Posted August 6, 2021 Share Posted August 6, 2021 Das kann ich dir als 1.6-Nutzer nicht sagen, es ist aber nicht verkehrt sich einmal generell mit der Dateistruktur vertraut zu machen, schau mal ob es authentication.tpl gibt. Link to comment Share on other sites More sharing options...
Claudiocool Posted August 6, 2021 Share Posted August 6, 2021 müßte eher mit checkout zu tun haben, authentication sollte eher für den Kundenlogin gelten. Aber ich denke, bei <shop-url>/themes/classic/templates/checkout/_partials/steps/payment.tpl ist die Sache ziemlich am Ende zu finden. In diesem Bereich: <form id="conditions-to-approve" method="GET"> <ul> {foreach from=$conditions_to_approve item="condition" key="condition_name"} <li> <div class="float-xs-left"> <span class="custom-checkbox"> <input id = "conditions_to_approve[{$condition_name}]" name = "conditions_to_approve[{$condition_name}]" required type = "checkbox" value = "1" class = "ps-shown-by-js" > <span><i class="material-icons rtl-no-flip checkbox-checked"></i></span> </span> </div> <div class="condition-label"> <label class="js-terms" for="conditions_to_approve[{$condition_name}]"> {$condition nofilter} </label> </div> </li> {/foreach} </ul> </form> Spiel da mal rum, was passiert, wenn du den Bereich mit der Checkbox auskommentierst oder da mal mit den Values experimentierst. Link to comment Share on other sites More sharing options...
manto666 Posted August 11, 2021 Author Share Posted August 11, 2021 Leider hat es in beiden tpl nichts gebracht. payment.tpl hat irgendwie gar keinen einfluss auf die Checkbox der datenschutzbestiummengen. Link to comment Share on other sites More sharing options...
Claudiocool Posted August 11, 2021 Share Posted August 11, 2021 Dann such doch einfach mal in allen Dateien nach "checkbox", eventuell hast du ja aein Template dazugekauft, bei dem die Sachen etwas anders laufen. Link to comment Share on other sites More sharing options...
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