How to create page in customer account section Magento 2 The 2019 Stack Overflow Developer Survey Results Are InHow to add customer new entity type and customer new fieldCreate new Customer Page and Link in Customer DashboardMagento2 - How to add a new section to customer account pageMagento 2 create new page header sectionHow to create custom XML file for new .phtml template page in Magento 2.1?Create Customer Account Not workingMagento 2 - How to create a calculatorMagento 2 Create observer on customer create, with custom moduleMagento 2 how to disable 'add new address' button from customer address book page, in account section?Adding contents to default customer sign up / create account page - Magento 2

If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?

ELI5: Why they say that Israel would have been the fourth country to land a spacecraft on the Moon and why they call it low cost?

What to do when moving next to a bird sanctuary with a loosely-domesticated cat?

Keeping a retro style to sci-fi spaceships?

Can an undergraduate be advised by a professor who is very far away?

Ubuntu Server install with full GUI

Is an up-to-date browser secure on an out-of-date OS?

Can there be female White Walkers?

What is the most efficient way to store a numeric range?

How to charge AirPods to keep battery healthy?

Old scifi movie from the 50s or 60s with men in solid red uniforms who interrogate a spy from the past

Can withdrawing asylum be illegal?

How do I free up internal storage if I don't have any apps downloaded?

Why doesn't shell automatically fix "useless use of cat"?

What does もの mean in this sentence?

How to translate "being like"?

Why not take a picture of a closer black hole?

Does adding complexity mean a more secure cipher?

Why couldn't they take pictures of a closer black hole?

Why didn't the Event Horizon Telescope team mention Sagittarius A*?

Why are there uneven bright areas in this photo of black hole?

How can I have a shield and a way of attacking with a ranged weapon at the same time?

What was the last CPU that did not have the x87 floating-point unit built in?

How much of the clove should I use when using big garlic heads?



How to create page in customer account section Magento 2



The 2019 Stack Overflow Developer Survey Results Are InHow to add customer new entity type and customer new fieldCreate new Customer Page and Link in Customer DashboardMagento2 - How to add a new section to customer account pageMagento 2 create new page header sectionHow to create custom XML file for new .phtml template page in Magento 2.1?Create Customer Account Not workingMagento 2 - How to create a calculatorMagento 2 Create observer on customer create, with custom moduleMagento 2 how to disable 'add new address' button from customer address book page, in account section?Adding contents to default customer sign up / create account page - Magento 2



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















enter image description here




I want to create new page and link to => HISTORY



how i can do this??



where I can add a new link?











share|improve this question
























  • Is that cms page?

    – Satish Dubariya
    yesterday

















1















enter image description here




I want to create new page and link to => HISTORY



how i can do this??



where I can add a new link?











share|improve this question
























  • Is that cms page?

    – Satish Dubariya
    yesterday













1












1








1








enter image description here




I want to create new page and link to => HISTORY



how i can do this??



where I can add a new link?











share|improve this question
















enter image description here




I want to create new page and link to => HISTORY



how i can do this??



where I can add a new link?








magento2 layout customer xml






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









Sanjay Gohil

490215




490215










asked yesterday









prabhakaran7prabhakaran7

32411




32411












  • Is that cms page?

    – Satish Dubariya
    yesterday

















  • Is that cms page?

    – Satish Dubariya
    yesterday
















Is that cms page?

– Satish Dubariya
yesterday





Is that cms page?

– Satish Dubariya
yesterday










1 Answer
1






active

oldest

votes


















0














You can create customer_account.xml layout XML file with below content to insert a custom link in customer account section.



<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="MagentoFrameworkViewElementHtmlLinkCurrent" name="customer-account-navigation-mycard">
<arguments>
<argument name="path" xsi:type="string">history/index/index</argument>
<argument name="label" xsi:type="string">History</argument>
<argument name="class" xsi:type="string">customer_hostory</argument>
</arguments>
</block>
</referenceBlock>
</body>
</page>


On above XML:



path => URL path that you want to link



label => Text label to show for the custom link



class => CSS class name






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "479"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269519%2fhow-to-create-page-in-customer-account-section-magento-2%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You can create customer_account.xml layout XML file with below content to insert a custom link in customer account section.



    <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="MagentoFrameworkViewElementHtmlLinkCurrent" name="customer-account-navigation-mycard">
    <arguments>
    <argument name="path" xsi:type="string">history/index/index</argument>
    <argument name="label" xsi:type="string">History</argument>
    <argument name="class" xsi:type="string">customer_hostory</argument>
    </arguments>
    </block>
    </referenceBlock>
    </body>
    </page>


    On above XML:



    path => URL path that you want to link



    label => Text label to show for the custom link



    class => CSS class name






    share|improve this answer



























      0














      You can create customer_account.xml layout XML file with below content to insert a custom link in customer account section.



      <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="MagentoFrameworkViewElementHtmlLinkCurrent" name="customer-account-navigation-mycard">
      <arguments>
      <argument name="path" xsi:type="string">history/index/index</argument>
      <argument name="label" xsi:type="string">History</argument>
      <argument name="class" xsi:type="string">customer_hostory</argument>
      </arguments>
      </block>
      </referenceBlock>
      </body>
      </page>


      On above XML:



      path => URL path that you want to link



      label => Text label to show for the custom link



      class => CSS class name






      share|improve this answer

























        0












        0








        0







        You can create customer_account.xml layout XML file with below content to insert a custom link in customer account section.



        <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="MagentoFrameworkViewElementHtmlLinkCurrent" name="customer-account-navigation-mycard">
        <arguments>
        <argument name="path" xsi:type="string">history/index/index</argument>
        <argument name="label" xsi:type="string">History</argument>
        <argument name="class" xsi:type="string">customer_hostory</argument>
        </arguments>
        </block>
        </referenceBlock>
        </body>
        </page>


        On above XML:



        path => URL path that you want to link



        label => Text label to show for the custom link



        class => CSS class name






        share|improve this answer













        You can create customer_account.xml layout XML file with below content to insert a custom link in customer account section.



        <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="MagentoFrameworkViewElementHtmlLinkCurrent" name="customer-account-navigation-mycard">
        <arguments>
        <argument name="path" xsi:type="string">history/index/index</argument>
        <argument name="label" xsi:type="string">History</argument>
        <argument name="class" xsi:type="string">customer_hostory</argument>
        </arguments>
        </block>
        </referenceBlock>
        </body>
        </page>


        On above XML:



        path => URL path that you want to link



        label => Text label to show for the custom link



        class => CSS class name







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered yesterday









        Pritam Info 24Pritam Info 24

        78417




        78417



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Magento Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f269519%2fhow-to-create-page-in-customer-account-section-magento-2%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

            Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

            Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form