如何在 magento 2 porto 主题中禁用或启用时事通讯弹出窗口
how to disable or enable newsletter popup in magento 2 porto theme
我在这里使用 magento 2 中的 Porto 主题。我需要禁用时事通讯弹出窗口。可能有一个设置。
但我不知道它在哪里。请帮忙。
xml 文件中的内容如下:
<referenceBlock name="customer-account-navigation-newsletter-subscriptions-link" remove="true"/>
写在xml中的行是正确的。
您似乎想从我的帐户页面中删除时事通讯标签。为此,我在主题客户模块文件中添加了同一行。
app/design/frontend/theme/default/Magento_Customer/layout/default.xml
文件中的代码
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="customer-account-navigation-newsletter-subscriptions-link" remove="true"/>
</body>
</page>
我在这里使用 magento 2 中的 Porto 主题。我需要禁用时事通讯弹出窗口。可能有一个设置。
但我不知道它在哪里。请帮忙。
xml 文件中的内容如下:
<referenceBlock name="customer-account-navigation-newsletter-subscriptions-link" remove="true"/>
写在xml中的行是正确的。
您似乎想从我的帐户页面中删除时事通讯标签。为此,我在主题客户模块文件中添加了同一行。
app/design/frontend/theme/default/Magento_Customer/layout/default.xml
文件中的代码
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="customer-account-navigation-newsletter-subscriptions-link" remove="true"/>
</body>
</page>