How can I add Track Button to Magento on frontend - Magento 1 [on hold]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
Stark VS Thanos
What word means "to make something obsolete"?
Junior developer struggles: how to communicate with management?
Why do freehub and cassette have only one position that matches?
How can I fairly adjudicate the effects of height differences on ranged attacks?
Write to EXCEL from SQL DB using VBA script
Does hiding behind 5-ft-wide cover give full cover?
Can commander tax be proliferated?
Copy line and insert it in a new position with sed or awk
Was the ancestor of SCSI, the SASI protocol, nothing more than a draft?
Pressure to defend the relevance of one's area of mathematics
Does higher resolution in an image imply more bits per pixel?
How does NAND gate work? (Very basic question)
Selecting a secure PIN for building access
Is Cola "probably the best-known" Latin word in the world? If not, which might it be?
Has any spacecraft ever had the ability to directly communicate with civilian air traffic control?
Why do money exchangers give different rates to different bills
LT Spice Voltage Output
How can I close a gap between my fence and my neighbor's that's on his side of the property line?
How did Captain America use this power?
How to reply this mail from potential PhD professor?
How to scale a verbatim environment on a minipage?
What are the spoon bit of a spoon and fork bit of a fork called?
My ID is expired, can I fly to the Bahamas with my passport
How can I add Track Button to Magento on frontend - Magento 1 [on hold]
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
put on hold as too broad by Jai, Muhammad Hasham, Piyush, sv3n, Dhiren Vasoya 2 days ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
How can I add track button on sales/order/history/
sales order-history
put on hold as too broad by Jai, Muhammad Hasham, Piyush, sv3n, Dhiren Vasoya 2 days ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
Mention the magento version please.
– Sukumar Gorai
Apr 26 at 13:23
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
Apr 26 at 14:03
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 Apr 26 at 14:02
Rannye Rodrigues
asked Apr 26 at 13:21
Rannye RodriguesRannye Rodrigues
92
92
put on hold as too broad by Jai, Muhammad Hasham, Piyush, sv3n, Dhiren Vasoya 2 days ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as too broad by Jai, Muhammad Hasham, Piyush, sv3n, Dhiren Vasoya 2 days ago
Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
Mention the magento version please.
– Sukumar Gorai
Apr 26 at 13:23
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
Apr 26 at 14:03
add a comment |
Mention the magento version please.
– Sukumar Gorai
Apr 26 at 13:23
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
Apr 26 at 14:03
Mention the magento version please.
– Sukumar Gorai
Apr 26 at 13:23
Mention the magento version please.
– Sukumar Gorai
Apr 26 at 13:23
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
Apr 26 at 14:03
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
Apr 26 at 14:03
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 |
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 Apr 26 at 14:45
Sukumar GoraiSukumar Gorai
7,0503729
7,0503729
add a comment |
add a comment |
Mention the magento version please.
– Sukumar Gorai
Apr 26 at 13:23
Sukumar Gorai, sorry. Is magento 1
– Rannye Rodrigues
Apr 26 at 14:03