Shopware 6:禁用 cookie 同意

PiT*_*ber 3 shopware

如何禁用 cookie 同意工具?

我知道没有选择(Shopware 问题NEXT-9096

您必须在模板中禁用它。我尝试过 storefront/layout/cookie/cookie-permission.html.twig 但这不起作用。

Paw*_*ała 5

要禁用 cookie 通知,请在插件中创建一个YourPlugin/src/Resources/views/storefront/layout/cookie/cookie-permission.html.twig包含以下内容的新文件:

{% sw_extends '@Storefront/storefront/layout/cookie/cookie-permission.html.twig' %}

{% block layout_cookie_permission_inner %}
{% endblock %}

Run Code Online (Sandbox Code Playgroud)

This will disable the layout_cookie_permission_inner block containing the cookie notification.