Jump to content

Pflicht Checkbox im Checkout AGB deaktivieren


manto666

Recommended Posts

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 by rictools
custom.css, nicht custum ... (see edit history)
Link to comment
Share on other sites

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">&#xE5CA;</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

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