I have top.links in default.xml my theme, i need add custom link above My Account, but link always in bottom, how i can move to top if sortOrder not working?
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="logo">
<arguments>
<argument name="logo_file" xsi:type="string">images/logo@2x.png</argument>
<argument name="logo_width" xsi:type="number">300</argument>
<argument name="logo_alt" xsi:type="string">Auto Show Fire</argument>
</arguments>
</referenceBlock>
<referenceContainer name="header.container" remove="true">
<referenceContainer name="header.panel.wrapper" remove="true" />
<referenceContainer name="header.panel" remove="true" />
<referenceBlock name="top.search" remove="true"/>
</referenceContainer>
<referenceContainer name="header-wrapper">
<referenceBlock name="navigation.sections" remove="true" />
</referenceContainer>
<move element="top.links" destination="custom_header"/>
<referenceBlock name="top.links">
<block class="MagentoFrameworkViewElementHtmlLink" name="custom-top-link">
<arguments>
<argument name="sortOrder" xsi:type="number">1000</argument>
<argument name="label" xsi:type="string" translate="true">Custom Top Link</argument>
<argument name="path" xsi:type="string">*/*/*</argument>
</arguments>
</block>
<block class="MagentoCustomerBlockAccountLink" name="help-link" before="authorization-link">
<arguments>
<argument name="path" xsi:type="string">contacts</argument>
<argument name="label" xsi:type="string">Help</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>
<argument name="sortOrder" xsi:type="number">1000</argument>
– don’t work. Any Idea how i can move this custom link at top, so that it is always located at the top of the menu.