How can I edit the “Account” block in my footer?Can I made a full-width block before the footer on a...
Split a number into equal parts given the number of parts
PTIJ: Why can't I sing about soda on certain days?
Why is my Contribution Detail Report (native CiviCRM Core report) not accurate?
Sometimes a banana is just a banana
PTIJ: Aharon, King of Egypt
is 'sed' thread safe
How can I highlight parts in a screenshot
Specific Chinese carabiner QA?
Lock enemy's y-axis when using Vector3.MoveTowards to follow the player
How to fix my table, centering of columns
Can we carry rice to Japan?
Has Wakanda ever accepted refugees?
How to mitigate "bandwagon attacking" from players?
PTIJ: Mordechai mourning
How to get the first element while continue streaming?
When to use mean vs median
Rationale to prefer local variables over instance variables?
If there are any 3nion, 5nion, 7nion, 9nion, 10nion, etc.
Plagiarism of code by other PhD student
Why are special aircraft used for the carriers in the United States Navy?
How does signal strength relate to bandwidth?
Caulking a corner instead of taping with joint compound?
Formatting a table to look nice
Where is the fallacy here?
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
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
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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
6817
6817
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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,40472875
2,40472875
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,14511136
8,14511136
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,05031751
3,05031751
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