Tôi đang cố xóa một số tab và thay đổi tiêu đề điều hướng:
Như bạn có thể thấy điều hướng ở trên Làm thế nào để loại bỏ một số điều hướng và thay đổi tiêu đề? Ví dụ: xóa Address Book
thay đổi NewsLetter Subscriptons
thành Đăng ký
Tôi đã tìm kiếm tập tin css nav items
và tìm thấy điều này:
<?php
/**
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/** @var $block \Magento\Framework\View\Element\Html\Links */
?>
<?php /** @var $block \Magento\Customer\Block\Account\Navigation */ ?>
<div class="block account-nav">
<div class="title">
<strong><?php /* @escapeNotVerified */ echo __('My Account'); ?></strong>
</div>
<div class="content">
<nav class="account-nav">
<ul class="nav items">
<?php echo $block->getChildHtml();?>
</ul>
</nav>
</div>
</div>
Từ đây tôi đã tìm kiếm \Magento\Framework\View\Element\Html\Links
nhưng hơi bị mắc kẹt và không biết phải làm gì.
Tôi mới sử dụng magento 2 nên rất tốt ở đây.
customer-account-navigation-wish-list-link