custom/plugins/LoyxxSW6ConversionCheckout/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_body_classes %}
  3.     {{ parent() }} {% if not data.get('conversionCheckoutType') %} show-conversion-checkout {% endif %} {{ config('LoyxxSW6ConversionCheckout.config.listPaymentMethods') ? ' loyxx-cc-payment-list-view ' : '' }} {{ config('LoyxxSW6ConversionCheckout.config.listShippingMethods') ? ' loyxx-cc-shipping-list-view ' : '' }}
  4. {% endblock %}
  5. {% block base_body_inner %}
  6.     {#    Enable the form field customization only when the user inside checkout and have enabled the enableFormFieldCustomization from config#}
  7.     {% if controllerName | lower is same as ('register') and controllerAction | lower is same as ('checkoutregisterpage') and config('LoyxxSW6ConversionCheckout.config.enableFormFieldCustomization') %}
  8.         <template data-checkout-field-customization="true"></template>
  9.     {% endif %}
  10.     {{ parent() }}
  11. {% endblock %}