调用静态图像或标志在敲出html在Magento2迷你,徽标显示在主页和类别页,但它没有显示在购物车和结账页面在Magento2。
发布于 2022-11-16 10:07:52
首先,您需要在custome主题文件中覆盖该文件:
project/vendor/magento/module-checkout/view/frontend/web/template/minicart/content.html
就像这样:
project/app/design/frontend/Magento/themename/Magento_Checkout/web/template/minicart/content.html
请查看此文件,其中我在支付图像div中添加了图像。
<div class="payment-img">
<img data-bind="attr: { src: require.toUrl('images/name.jpg') }" alt="">
</div>你需要把你的图像放在这个文件夹里。
project/app/design/frontend/Magento/themename/web/images
https://stackoverflow.com/questions/55078381
复制相似问题