How can I add Track Button to Magento on frontend - Magento 1Is there a way to Sort Comments History by Descending order?How can i export this reportHow to get PDF file of Orders on the basis of DateMagento 2: Download order history from Customer accountIn Magento 1 Sales menu add custom created sub-menuHow can we add header and footer to invoice pdfOverride Sales order history issue in magento2Add column to “Sales Order” history content in customer accountadd username to order comment historyGet custom join query using for order items collection of particular order magento 2
Pulling the rope with one hand is as heavy as with two hands?
Mistake in years of experience in resume?
a sore throat vs a strep throat vs strep throat
How do I check if a string is entirely made of the same substring?
Is there really no use for MD5 anymore?
How to pronounce 'c++' in Spanish
How come there are so many candidates for the 2020 Democratic party presidential nomination?
Why does Mind Blank stop the Feeblemind spell?
As an international instructor, should I openly talk about my accent?
What does the integral of a function times a function of a random variable represent, conceptually?
Rivers without rain
Why do games have consumables?
How can I get this effect? Please see the attached image
Multiple options vs single option UI
How to denote matrix elements succinctly?
How to fry ground beef so it is well-browned
Is it idiomatic to construct against `this`
Why does nature favour the Laplacian?
Coordinate my way to the name of the (video) game
What makes accurate emulation of old systems a difficult task?
Can SQL Server create collisions in system generated constraint names?
Why did some of my point & shoot film photos come back with one third light white or orange?
Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?
Contradiction proof for inequality of P and NP?
How can I add Track Button to Magento on frontend - Magento 1
Is there a way to Sort Comments History by Descending order?How can i export this reportHow to get PDF file of Orders on the basis of DateMagento 2: Download order history from Customer accountIn Magento 1 Sales menu add custom created sub-menuHow can we add header and footer to invoice pdfOverride Sales order history issue in magento2Add column to “Sales Order” history content in customer accountadd username to order comment historyGet custom join query using for order items collection of particular order magento 2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How can I add track button on sales/order/history/
sales order-history
add a comment |
How can I add track button on sales/order/history/
sales order-history
Mention the magento version please.
– Sukumar Gorai
7 hours ago
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
7 hours ago
add a comment |
How can I add track button on sales/order/history/
sales order-history
How can I add track button on sales/order/history/
sales order-history
sales order-history
edited 7 hours ago
Rannye Rodrigues
asked 7 hours ago
Rannye RodriguesRannye Rodrigues
112
112
Mention the magento version please.
– Sukumar Gorai
7 hours ago
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
7 hours ago
add a comment |
Mention the magento version please.
– Sukumar Gorai
7 hours ago
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
7 hours ago
Mention the magento version please.
– Sukumar Gorai
7 hours ago
Mention the magento version please.
– Sukumar Gorai
7 hours ago
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
7 hours ago
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
7 hours ago
add a comment |
1 Answer
1
active
oldest
votes
Copy the below file:
app/design/frontend/base/default/template/sales/order/history.phtml
to your theme(if its not present in your theme location):
app/design/frontend/[your_package]/[your_theme]/template/sales/order/history.phtml
Find the below block:
<?php /*<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a> */ ?>
and uncomment it:
<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a>
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%2f272609%2fhow-can-i-add-track-button-to-magento-on-frontend-magento-1%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
Copy the below file:
app/design/frontend/base/default/template/sales/order/history.phtml
to your theme(if its not present in your theme location):
app/design/frontend/[your_package]/[your_theme]/template/sales/order/history.phtml
Find the below block:
<?php /*<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a> */ ?>
and uncomment it:
<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a>
add a comment |
Copy the below file:
app/design/frontend/base/default/template/sales/order/history.phtml
to your theme(if its not present in your theme location):
app/design/frontend/[your_package]/[your_theme]/template/sales/order/history.phtml
Find the below block:
<?php /*<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a> */ ?>
and uncomment it:
<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a>
add a comment |
Copy the below file:
app/design/frontend/base/default/template/sales/order/history.phtml
to your theme(if its not present in your theme location):
app/design/frontend/[your_package]/[your_theme]/template/sales/order/history.phtml
Find the below block:
<?php /*<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a> */ ?>
and uncomment it:
<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a>
Copy the below file:
app/design/frontend/base/default/template/sales/order/history.phtml
to your theme(if its not present in your theme location):
app/design/frontend/[your_package]/[your_theme]/template/sales/order/history.phtml
Find the below block:
<?php /*<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a> */ ?>
and uncomment it:
<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a>
answered 6 hours ago
Sukumar GoraiSukumar Gorai
7,0353729
7,0353729
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%2f272609%2fhow-can-i-add-track-button-to-magento-on-frontend-magento-1%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
Mention the magento version please.
– Sukumar Gorai
7 hours ago
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
7 hours ago