How to add tracking ID link in shipping email? The Next CEO of Stack OverflowHow to add DHL shipping tracking for customers?Add tracking link to mailvariable for shipping tracking no in emailHow to modify tracking link targetAdd tracking link to shipment email doesn't workMagento 2: Send different email templates for Ship, based on Shipping Method chosenMagento2: How to add tracking url in shipment email for customer in magento 2How to add and remove Shipping and Tracking Information Carrier?Populate tracking link with tracking numberSend Tracking information email to customer when tracking number saved to Magento
Could you use a laser beam as a modulated carrier wave for radio signal?
A hang glider, sudden unexpected lift to 25,000 feet altitude, what could do this?
Salesforce opportunity stages
Could a dragon use its wings to swim?
Is it a bad idea to plug the other end of ESD strap to wall ground?
Read/write a pipe-delimited file line by line with some simple text manipulation
Masking layers by a vector polygon layer in QGIS
Does the Idaho Potato Commission associate potato skins with healthy eating?
Simplify trigonometric expression using trigonometric identities
That's an odd coin - I wonder why
"Eavesdropping" vs "Listen in on"
Compensation for working overtime on Saturdays
Is there a rule of thumb for determining the amount one should accept for a settlement offer?
How to show a landlord what we have in savings?
Car headlights in a world without electricity
Early programmable calculators with RS-232
MT "will strike" & LXX "will watch carefully" (Gen 3:15)?
Prodigo = pro + ago?
Do I need to write [sic] when including a quotation with a number less than 10 that isn't written out?
Is the offspring between a demon and a celestial possible? If so what is it called and is it in a book somewhere?
Why can't we say "I have been having a dog"?
Gödel's incompleteness theorems - what are the religious implications?
What steps are necessary to read a Modern SSD in Medieval Europe?
How can I separate the number from the unit in argument?
How to add tracking ID link in shipping email?
The Next CEO of Stack OverflowHow to add DHL shipping tracking for customers?Add tracking link to mailvariable for shipping tracking no in emailHow to modify tracking link targetAdd tracking link to shipment email doesn't workMagento 2: Send different email templates for Ship, based on Shipping Method chosenMagento2: How to add tracking url in shipment email for customer in magento 2How to add and remove Shipping and Tracking Information Carrier?Populate tracking link with tracking numberSend Tracking information email to customer when tracking number saved to Magento
I like to add tracking ID link for my shipping email template form.
Please advice me to do this process.
magento2 shipment-tracking
add a comment |
I like to add tracking ID link for my shipping email template form.
Please advice me to do this process.
magento2 shipment-tracking
add a comment |
I like to add tracking ID link for my shipping email template form.
Please advice me to do this process.
magento2 shipment-tracking
I like to add tracking ID link for my shipping email template form.
Please advice me to do this process.
magento2 shipment-tracking
magento2 shipment-tracking
asked Mar 20 at 7:39
mohanamohana
8710
8710
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Please override this file:
vendor/magento/module-sales/view/frontend/templates/email/shipment/track.phtml
by creating this path:
/app/design/frontend/Custom/theme/Magento_Sales/templates/email/shipment/track.phtml
Please add below code in foreach loop
<?php
$trackurl = '';
if($_item->getCarrierCode() === 'fedex')
$trackurl = 'https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'usps')
$trackurl = 'https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'ups')
$trackurl = 'https://wwwapps.ups.com/WebTracking/returnToDetails?tracknum='.$_item->getNumber();
?>
<tr>
<td><?= $block->escapeHtml($_item->getCarrierCode()) ?>:</td>
<td style="padding:3px 9px"><a href="<?php echo $trackurl ?>"><?php echo $this->escapeHtml($_item->getNumber()) ?></a></td>
</tr>
add a comment |
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%2f266620%2fhow-to-add-tracking-id-link-in-shipping-email%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
Please override this file:
vendor/magento/module-sales/view/frontend/templates/email/shipment/track.phtml
by creating this path:
/app/design/frontend/Custom/theme/Magento_Sales/templates/email/shipment/track.phtml
Please add below code in foreach loop
<?php
$trackurl = '';
if($_item->getCarrierCode() === 'fedex')
$trackurl = 'https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'usps')
$trackurl = 'https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'ups')
$trackurl = 'https://wwwapps.ups.com/WebTracking/returnToDetails?tracknum='.$_item->getNumber();
?>
<tr>
<td><?= $block->escapeHtml($_item->getCarrierCode()) ?>:</td>
<td style="padding:3px 9px"><a href="<?php echo $trackurl ?>"><?php echo $this->escapeHtml($_item->getNumber()) ?></a></td>
</tr>
add a comment |
Please override this file:
vendor/magento/module-sales/view/frontend/templates/email/shipment/track.phtml
by creating this path:
/app/design/frontend/Custom/theme/Magento_Sales/templates/email/shipment/track.phtml
Please add below code in foreach loop
<?php
$trackurl = '';
if($_item->getCarrierCode() === 'fedex')
$trackurl = 'https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'usps')
$trackurl = 'https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'ups')
$trackurl = 'https://wwwapps.ups.com/WebTracking/returnToDetails?tracknum='.$_item->getNumber();
?>
<tr>
<td><?= $block->escapeHtml($_item->getCarrierCode()) ?>:</td>
<td style="padding:3px 9px"><a href="<?php echo $trackurl ?>"><?php echo $this->escapeHtml($_item->getNumber()) ?></a></td>
</tr>
add a comment |
Please override this file:
vendor/magento/module-sales/view/frontend/templates/email/shipment/track.phtml
by creating this path:
/app/design/frontend/Custom/theme/Magento_Sales/templates/email/shipment/track.phtml
Please add below code in foreach loop
<?php
$trackurl = '';
if($_item->getCarrierCode() === 'fedex')
$trackurl = 'https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'usps')
$trackurl = 'https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'ups')
$trackurl = 'https://wwwapps.ups.com/WebTracking/returnToDetails?tracknum='.$_item->getNumber();
?>
<tr>
<td><?= $block->escapeHtml($_item->getCarrierCode()) ?>:</td>
<td style="padding:3px 9px"><a href="<?php echo $trackurl ?>"><?php echo $this->escapeHtml($_item->getNumber()) ?></a></td>
</tr>
Please override this file:
vendor/magento/module-sales/view/frontend/templates/email/shipment/track.phtml
by creating this path:
/app/design/frontend/Custom/theme/Magento_Sales/templates/email/shipment/track.phtml
Please add below code in foreach loop
<?php
$trackurl = '';
if($_item->getCarrierCode() === 'fedex')
$trackurl = 'https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'usps')
$trackurl = 'https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1='.$_item->getNumber();
elseif ($_item->getCarrierCode() === 'ups')
$trackurl = 'https://wwwapps.ups.com/WebTracking/returnToDetails?tracknum='.$_item->getNumber();
?>
<tr>
<td><?= $block->escapeHtml($_item->getCarrierCode()) ?>:</td>
<td style="padding:3px 9px"><a href="<?php echo $trackurl ?>"><?php echo $this->escapeHtml($_item->getNumber()) ?></a></td>
</tr>
answered Mar 20 at 7:41
Mohit chauhanMohit chauhan
516112
516112
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%2f266620%2fhow-to-add-tracking-id-link-in-shipping-email%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