在Magento 2.1(.1)中,徽标/vendor/magento/module-checkout/view/frontend/layout/checkout_index_index.xml
从正常位置移动到checkout.header.wrapper
,然后似乎丢失了。
这是罪魁祸首:
<move element="logo" destination="checkout.header.wrapper"/>
要找回徽标,请添加/编辑文件:
[root] / app / design / frontend / [vendor] / [theme] /Magento_Checkout/layout/checkout_index_index.xml
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
layout="1column"
xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<move element="logo" destination="header-wrapper"/>
</body>
</page>