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;
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
add a comment |
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
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
add a comment |
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
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
magento-1.9 footer
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
add a comment |
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
add a comment |
3 Answers
3
active
oldest
votes
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>
add a comment |
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>
add a comment |
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();
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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>
add a comment |
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>
add a comment |
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>
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>
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
add a comment |
add a comment |
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>
add a comment |
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>
add a comment |
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>
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>
answered Dec 23 '15 at 9:54
AbdulAbdul
8,3191 gold badge12 silver badges36 bronze badges
8,3191 gold badge12 silver badges36 bronze badges
add a comment |
add a comment |
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();
add a comment |
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();
add a comment |
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();
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();
answered Jul 4 '16 at 18:20
KlettsebKlettseb
3,0433 gold badges18 silver badges51 bronze badges
3,0433 gold badges18 silver badges51 bronze badges
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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