如何覆盖购物车页面上的`storefront/component/line-item/element/label.html.twig`?

问题描述 投票:0回答:1

想要覆盖购物车页面上可用的

storefront/component/line-item/element/label.html.twig
文件。

我尝试在覆盖树枝模板中添加以下代码,然后它抛出一个错误:

"Calling "parent" on a template that does not extend nor "use" another template is forbidden"
{% block component_line_item_label %}
    {{ parent() }}
        some custom text 
{% endblock %}
twig shopware6
1个回答
0
投票

您需要扩展原始模板文件,请参阅此处了解更多信息

所以你的模板应该是这样的:

{% sw_extends @Storefront/storefront/component/line-item/element/label.html.twig %}

{% block component_line_item_label %}
    {{ parent() }}
        some custom text 
{% endblock %}
© www.soinside.com 2019 - 2024. All rights reserved.