고객 계정 탐색에 사용자 정의 링크를 추가하려고합니다. 내 맞춤 링크가 계정 탐색에 표시되고 작동하지만 클릭시 활성 / 현재로 표시되지 않습니다.
아래는 내가 가진 코드입니다.
/app/code/Namespace/Support/view/frontend/layout/customer_account.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">
<block class="Magento\Framework\View\Element\Html\Link\Current" name="customer-account-navigation-suppport-ticket-link" after="-">
<arguments>
<argument name="path" xsi:type="string">support/customer/index</argument>
<argument name="label" xsi:type="string">Support Ticket</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
/app/code/Namespace/Support/Controller/Customer/Index.php
<?php
namespace Namespace\Support\Controller\Customer;
use Magento\Framework\App\Action;
use Magento\Framework\Exception\NotFoundException;
use Magento\Framework\Controller\ResultFactory;
class Index extends \Namespace\Support\Controller\Index
{
/**
* Show customer tickets
*
* @return \Magento\Framework\View\Result\Page
* @throws NotFoundException
*/
public function execute()
{
/** @var \Magento\Framework\View\Result\Page resultPage */
$resultPage = $this->resultFactory->create(ResultFactory::TYPE_PAGE);
return $resultPage;
}
}
/app/code/Namespace/Support/view/frontend/layout/support_customer_index.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">
<update handle="customer_account"/>
<head>
<title>Support Ticket</title>
<css src="Namespace_Support::css/styles.css"/>
</head>
<body>
<referenceContainer name="content">
<block class="Namespace\Support\Block\TicketList" name="ticketViewList" template="Namespace_Support::list.phtml" />
</referenceContainer>
</body>
</page>
도움이된다면 알려주세요
—
Codrain Technolabs Pvt 주식 회사에게
@YagneshPonkiya. 빠른 답변 감사합니다. 예, 작동합니다. 귀하의 의견을 답변으로 작성하여 수락하십시오.
—
Shyam
@YagneshPonkiya. 또한 문제가 무엇인지 말씀해 주시겠습니까? 왜 우리는 그것을 바꿔야 했습니까? 미리 감사드립니다.
—
Shyam
@Shyam,이 모듈을 완료 했습니까? 내 M2 프로젝트에서 동일한 기능을 만들고 있습니다. 이 기능을 어떻게 만들 수 있는지 안내해 주시겠습니까? 감사합니다
—
mageDev0688
<argument name="path" xsi:type="string">support/customer/index</argument>
으로 변경<argument name="path" xsi:type="string">support/customer</argument>