How can I edit the “Account” block in my footer?Can I made a full-width block before the footer on a 2columns-left page?Footer Links in version 1.8.1Unable to edit text in footer areaMagento2 - How to add a block to footerMagento 2 - Call a static block in the footerHow to edit the footer links in magento 2Adding title to cms footer blockHow to add a second static link block in footer (Magento2)?Magento - Call Customer Account Menu in CMS PageMagento 1.9 can't find topLinks block

Why did Spider-Man take a detour to Dorset?

What is this called? A tube flange bearing threaded for threaded pushrod

How could an animal "smell" carbon monoxide?

SYNC and the 65CE02 instruction timing

What do mathematicians mean when they say some conjecture can’t be proven using the current technology?

Getting fresh water in the middle of hypersaline lake in the Bronze Age

Is this more than a packing puzzle?

Is there a good program to play chess online in ubuntu?

Is there an English equivalent for "Les carottes sont cuites", while keeping the vegetable reference?

Why don't commercial aircraft adopt a slightly more seaplane-like design to allow safer ditching in case of emergency?

Is there a way to handmake alphabet pasta?

Is dividends exclusively a part of earnings?

What impact would a dragon the size of Asia have on the environment?

Draw a line nicely around notes

Why should I cook the flour first when making bechamel sauce?

Why do legislative committees exist?

Can a Resident Assistant Be Told to Ignore a Lawful Order?

I gave my characters names that are exactly like another book. Is it a problem?

Can a British citizen travel with a Nigerian passport?

Source of story about the Vilna Gaon and immigration policy

I do not have power to all my breakers

Animal Shelter Management C++

I have accepted an internship offer. Should I inform companies I have applied to that have not gotten back to me yet?

Decoding Every Top 100 Voting Ever



How can I edit the “Account” block in my footer?


Can I made a full-width block before the footer on a 2columns-left page?Footer Links in version 1.8.1Unable to edit text in footer areaMagento2 - How to add a block to footerMagento 2 - Call a static block in the footerHow to edit the footer links in magento 2Adding title to cms footer blockHow to add a second static link block in footer (Magento2)?Magento - Call Customer Account Menu in CMS PageMagento 1.9 can't find topLinks block






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








1















I can't find the cms page for it. The block contains :



MY ACCOUNT

ORDERS AND RETURNS



as links and I want to add a link and change the title of "Accounts". What do I have to do?










share|improve this question






















  • try this in your footr block <li><a title="My Accoubt" href="store url='customer/account'">My Account</a>

    – Magento 2
    Dec 23 '15 at 7:56


















1















I can't find the cms page for it. The block contains :



MY ACCOUNT

ORDERS AND RETURNS



as links and I want to add a link and change the title of "Accounts". What do I have to do?










share|improve this question






















  • try this in your footr block <li><a title="My Accoubt" href="store url='customer/account'">My Account</a>

    – Magento 2
    Dec 23 '15 at 7:56














1












1








1








I can't find the cms page for it. The block contains :



MY ACCOUNT

ORDERS AND RETURNS



as links and I want to add a link and change the title of "Accounts". What do I have to do?










share|improve this question














I can't find the cms page for it. The block contains :



MY ACCOUNT

ORDERS AND RETURNS



as links and I want to add a link and change the title of "Accounts". What do I have to do?







magento-1.9 footer






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 23 '15 at 7:52









ercMathaercMatha

681 silver badge8 bronze badges




681 silver badge8 bronze badges












  • try this in your footr block <li><a title="My Accoubt" href="store url='customer/account'">My Account</a>

    – Magento 2
    Dec 23 '15 at 7:56


















  • try this in your footr block <li><a title="My Accoubt" href="store url='customer/account'">My Account</a>

    – Magento 2
    Dec 23 '15 at 7:56

















try this in your footr block <li><a title="My Accoubt" href="store url='customer/account'">My Account</a>

– Magento 2
Dec 23 '15 at 7:56






try this in your footr block <li><a title="My Accoubt" href="store url='customer/account'">My Account</a>

– Magento 2
Dec 23 '15 at 7:56











3 Answers
3






active

oldest

votes


















0














Create static block and add below code



<ul> 
<li><a title="My Accoubt" href="store url='customer/account'">My Account</a></li>
</ul>


Add local.xml



<reference name="footer">
<block type="cms/block" name="cms_footer_links" before="footer_links">

<action method="setBlockId"><block_id>Static block id here</block_id></action>
</block>
</reference>





share|improve this answer






























    0














    Go admin side on top menu : CMS -> Static Blocks and click on "Footer Links" after add your links in section "Content *"



    For eg.



    <ul>
    <li> if="about-magento-demo-store"<a href="store direct_url="about-magento-demo-store"">About Us</a></li>
    <li><a href="store direct_url="customer/accoun"">My account</a> <a href="store url='customer/account'">My account</a></li>
    <li><a href="store direct_url="sales/guest"">ORDERS AND RETURNS</a> <a href="store url='sales/guest'">ORDERS AND RETURNS</a></li>
    </ul>





    share|improve this answer






























      0














      I think the links you mean are the following folder



      appdesignfrontenddefaultthemeXXXX


      The Order and Return link is in layout/sales.xml



      <reference name="footer_links">
      <block type="sales/guest_links" name="return_link"/>
      <action method="addLinkBlock"><blockName>return_link</blockName></action>
      </reference>


      The Sitemap link you can find here:layout/catalog.xml



      <reference name="footer_links">
      <action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
      </reference>


      The Search terms link you can find here:
      layout/catalogsearch.xml



      <reference name="footer_links">
      <action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
      <label>Search Terms</label>
      <url helper="catalogsearch/getSearchTermUrl" />
      <title>Search Terms</title>
      </action>
      <action method="addLink" translate="label title" module="catalogsearch">
      <label>Advanced Search</label>
      <url helper="catalogsearch/getAdvancedSearchUrl" />
      <title>Advanced Search</title>
      </action>
      </reference>


      The contacts link in:
      layout/contacts.xml



      <reference name="footer_links">
      <action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled"><label>Contact Us</label><url>contacts</url><title>Contact Us</title><prepare>true</prepare></action>
      </reference>


      Just comment the ones out you want to remove. If you want to remove all of them and just add your static cms block "footer_links" then you will need to copy this file /app/code/core/Mage/Page/Block/Template/Links.php to your local files and comment the following piece of code out



      $this->getLinks();





      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%2f94805%2fhow-can-i-edit-the-account-block-in-my-footer%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        0














        Create static block and add below code



        <ul> 
        <li><a title="My Accoubt" href="store url='customer/account'">My Account</a></li>
        </ul>


        Add local.xml



        <reference name="footer">
        <block type="cms/block" name="cms_footer_links" before="footer_links">

        <action method="setBlockId"><block_id>Static block id here</block_id></action>
        </block>
        </reference>





        share|improve this answer



























          0














          Create static block and add below code



          <ul> 
          <li><a title="My Accoubt" href="store url='customer/account'">My Account</a></li>
          </ul>


          Add local.xml



          <reference name="footer">
          <block type="cms/block" name="cms_footer_links" before="footer_links">

          <action method="setBlockId"><block_id>Static block id here</block_id></action>
          </block>
          </reference>





          share|improve this answer

























            0












            0








            0







            Create static block and add below code



            <ul> 
            <li><a title="My Accoubt" href="store url='customer/account'">My Account</a></li>
            </ul>


            Add local.xml



            <reference name="footer">
            <block type="cms/block" name="cms_footer_links" before="footer_links">

            <action method="setBlockId"><block_id>Static block id here</block_id></action>
            </block>
            </reference>





            share|improve this answer













            Create static block and add below code



            <ul> 
            <li><a title="My Accoubt" href="store url='customer/account'">My Account</a></li>
            </ul>


            Add local.xml



            <reference name="footer">
            <block type="cms/block" name="cms_footer_links" before="footer_links">

            <action method="setBlockId"><block_id>Static block id here</block_id></action>
            </block>
            </reference>






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Dec 23 '15 at 9:09









            Magento 2Magento 2

            2,4187 gold badges32 silver badges79 bronze badges




            2,4187 gold badges32 silver badges79 bronze badges























                0














                Go admin side on top menu : CMS -> Static Blocks and click on "Footer Links" after add your links in section "Content *"



                For eg.



                <ul>
                <li> if="about-magento-demo-store"<a href="store direct_url="about-magento-demo-store"">About Us</a></li>
                <li><a href="store direct_url="customer/accoun"">My account</a> <a href="store url='customer/account'">My account</a></li>
                <li><a href="store direct_url="sales/guest"">ORDERS AND RETURNS</a> <a href="store url='sales/guest'">ORDERS AND RETURNS</a></li>
                </ul>





                share|improve this answer



























                  0














                  Go admin side on top menu : CMS -> Static Blocks and click on "Footer Links" after add your links in section "Content *"



                  For eg.



                  <ul>
                  <li> if="about-magento-demo-store"<a href="store direct_url="about-magento-demo-store"">About Us</a></li>
                  <li><a href="store direct_url="customer/accoun"">My account</a> <a href="store url='customer/account'">My account</a></li>
                  <li><a href="store direct_url="sales/guest"">ORDERS AND RETURNS</a> <a href="store url='sales/guest'">ORDERS AND RETURNS</a></li>
                  </ul>





                  share|improve this answer

























                    0












                    0








                    0







                    Go admin side on top menu : CMS -> Static Blocks and click on "Footer Links" after add your links in section "Content *"



                    For eg.



                    <ul>
                    <li> if="about-magento-demo-store"<a href="store direct_url="about-magento-demo-store"">About Us</a></li>
                    <li><a href="store direct_url="customer/accoun"">My account</a> <a href="store url='customer/account'">My account</a></li>
                    <li><a href="store direct_url="sales/guest"">ORDERS AND RETURNS</a> <a href="store url='sales/guest'">ORDERS AND RETURNS</a></li>
                    </ul>





                    share|improve this answer













                    Go admin side on top menu : CMS -> Static Blocks and click on "Footer Links" after add your links in section "Content *"



                    For eg.



                    <ul>
                    <li> if="about-magento-demo-store"<a href="store direct_url="about-magento-demo-store"">About Us</a></li>
                    <li><a href="store direct_url="customer/accoun"">My account</a> <a href="store url='customer/account'">My account</a></li>
                    <li><a href="store direct_url="sales/guest"">ORDERS AND RETURNS</a> <a href="store url='sales/guest'">ORDERS AND RETURNS</a></li>
                    </ul>






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 23 '15 at 9:54









                    AbdulAbdul

                    8,3191 gold badge12 silver badges36 bronze badges




                    8,3191 gold badge12 silver badges36 bronze badges





















                        0














                        I think the links you mean are the following folder



                        appdesignfrontenddefaultthemeXXXX


                        The Order and Return link is in layout/sales.xml



                        <reference name="footer_links">
                        <block type="sales/guest_links" name="return_link"/>
                        <action method="addLinkBlock"><blockName>return_link</blockName></action>
                        </reference>


                        The Sitemap link you can find here:layout/catalog.xml



                        <reference name="footer_links">
                        <action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
                        </reference>


                        The Search terms link you can find here:
                        layout/catalogsearch.xml



                        <reference name="footer_links">
                        <action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
                        <label>Search Terms</label>
                        <url helper="catalogsearch/getSearchTermUrl" />
                        <title>Search Terms</title>
                        </action>
                        <action method="addLink" translate="label title" module="catalogsearch">
                        <label>Advanced Search</label>
                        <url helper="catalogsearch/getAdvancedSearchUrl" />
                        <title>Advanced Search</title>
                        </action>
                        </reference>


                        The contacts link in:
                        layout/contacts.xml



                        <reference name="footer_links">
                        <action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled"><label>Contact Us</label><url>contacts</url><title>Contact Us</title><prepare>true</prepare></action>
                        </reference>


                        Just comment the ones out you want to remove. If you want to remove all of them and just add your static cms block "footer_links" then you will need to copy this file /app/code/core/Mage/Page/Block/Template/Links.php to your local files and comment the following piece of code out



                        $this->getLinks();





                        share|improve this answer



























                          0














                          I think the links you mean are the following folder



                          appdesignfrontenddefaultthemeXXXX


                          The Order and Return link is in layout/sales.xml



                          <reference name="footer_links">
                          <block type="sales/guest_links" name="return_link"/>
                          <action method="addLinkBlock"><blockName>return_link</blockName></action>
                          </reference>


                          The Sitemap link you can find here:layout/catalog.xml



                          <reference name="footer_links">
                          <action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
                          </reference>


                          The Search terms link you can find here:
                          layout/catalogsearch.xml



                          <reference name="footer_links">
                          <action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
                          <label>Search Terms</label>
                          <url helper="catalogsearch/getSearchTermUrl" />
                          <title>Search Terms</title>
                          </action>
                          <action method="addLink" translate="label title" module="catalogsearch">
                          <label>Advanced Search</label>
                          <url helper="catalogsearch/getAdvancedSearchUrl" />
                          <title>Advanced Search</title>
                          </action>
                          </reference>


                          The contacts link in:
                          layout/contacts.xml



                          <reference name="footer_links">
                          <action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled"><label>Contact Us</label><url>contacts</url><title>Contact Us</title><prepare>true</prepare></action>
                          </reference>


                          Just comment the ones out you want to remove. If you want to remove all of them and just add your static cms block "footer_links" then you will need to copy this file /app/code/core/Mage/Page/Block/Template/Links.php to your local files and comment the following piece of code out



                          $this->getLinks();





                          share|improve this answer

























                            0












                            0








                            0







                            I think the links you mean are the following folder



                            appdesignfrontenddefaultthemeXXXX


                            The Order and Return link is in layout/sales.xml



                            <reference name="footer_links">
                            <block type="sales/guest_links" name="return_link"/>
                            <action method="addLinkBlock"><blockName>return_link</blockName></action>
                            </reference>


                            The Sitemap link you can find here:layout/catalog.xml



                            <reference name="footer_links">
                            <action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
                            </reference>


                            The Search terms link you can find here:
                            layout/catalogsearch.xml



                            <reference name="footer_links">
                            <action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
                            <label>Search Terms</label>
                            <url helper="catalogsearch/getSearchTermUrl" />
                            <title>Search Terms</title>
                            </action>
                            <action method="addLink" translate="label title" module="catalogsearch">
                            <label>Advanced Search</label>
                            <url helper="catalogsearch/getAdvancedSearchUrl" />
                            <title>Advanced Search</title>
                            </action>
                            </reference>


                            The contacts link in:
                            layout/contacts.xml



                            <reference name="footer_links">
                            <action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled"><label>Contact Us</label><url>contacts</url><title>Contact Us</title><prepare>true</prepare></action>
                            </reference>


                            Just comment the ones out you want to remove. If you want to remove all of them and just add your static cms block "footer_links" then you will need to copy this file /app/code/core/Mage/Page/Block/Template/Links.php to your local files and comment the following piece of code out



                            $this->getLinks();





                            share|improve this answer













                            I think the links you mean are the following folder



                            appdesignfrontenddefaultthemeXXXX


                            The Order and Return link is in layout/sales.xml



                            <reference name="footer_links">
                            <block type="sales/guest_links" name="return_link"/>
                            <action method="addLinkBlock"><blockName>return_link</blockName></action>
                            </reference>


                            The Sitemap link you can find here:layout/catalog.xml



                            <reference name="footer_links">
                            <action method="addLink" translate="label title" module="catalog" ifconfig="catalog/seo/site_map"><label>Site Map</label><url helper="catalog/map/getCategoryUrl" /><title>Site Map</title></action>
                            </reference>


                            The Search terms link you can find here:
                            layout/catalogsearch.xml



                            <reference name="footer_links">
                            <action method="addLink" translate="label title" module="catalogsearch" ifconfig="catalog/seo/search_terms">
                            <label>Search Terms</label>
                            <url helper="catalogsearch/getSearchTermUrl" />
                            <title>Search Terms</title>
                            </action>
                            <action method="addLink" translate="label title" module="catalogsearch">
                            <label>Advanced Search</label>
                            <url helper="catalogsearch/getAdvancedSearchUrl" />
                            <title>Advanced Search</title>
                            </action>
                            </reference>


                            The contacts link in:
                            layout/contacts.xml



                            <reference name="footer_links">
                            <action method="addLink" translate="label title" module="contacts" ifconfig="contacts/contacts/enabled"><label>Contact Us</label><url>contacts</url><title>Contact Us</title><prepare>true</prepare></action>
                            </reference>


                            Just comment the ones out you want to remove. If you want to remove all of them and just add your static cms block "footer_links" then you will need to copy this file /app/code/core/Mage/Page/Block/Template/Links.php to your local files and comment the following piece of code out



                            $this->getLinks();






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jul 4 '16 at 18:20









                            KlettsebKlettseb

                            3,0433 gold badges18 silver badges51 bronze badges




                            3,0433 gold badges18 silver badges51 bronze badges



























                                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%2f94805%2fhow-can-i-edit-the-account-block-in-my-footer%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