How to override vendor/magento/module-sales/view/adminhtml/templates/items/column/name.phtml Magento 2
Can anyone help how to override
vendor/magento/module-sales/view/adminhtml/templates/items/column/name.phtml file.
magento2.2
add a comment |
Can anyone help how to override
vendor/magento/module-sales/view/adminhtml/templates/items/column/name.phtml file.
magento2.2
add a comment |
Can anyone help how to override
vendor/magento/module-sales/view/adminhtml/templates/items/column/name.phtml file.
magento2.2
Can anyone help how to override
vendor/magento/module-sales/view/adminhtml/templates/items/column/name.phtml file.
magento2.2
magento2.2
edited Sep 14 '18 at 7:00
Teja Bhagavan Kollepara
2,94841847
2,94841847
asked Sep 14 '18 at 6:55
Jm CabugnasonJm Cabugnason
614
614
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
At Magento2, from 7 layout items/column/name.phtml
called
sales_order_creditmemo_new.xml
sales_order_creditmemo_updateqty.xml
- sales_order_creditmemo_view.xml
- sales_order_invoice_new.xml
- sales_order_invoice_updateqty.xml
- sales_order_invoice_view.xml
- sales_order_view.xml
That you need to identify for which page, you want rewrite name.phtml
.
So, you will found out respective layout file and have to create that layout file on your custom module as mention by Michell process.
Suppose, you want to changes at invoice create page.
Then have to create
1.app/code/Company/Module/view/adminhtml/layout/sales_order_invoice_new.xml
Code
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name" template="Company_Module::orders/items/column/name.phtml"/>
</body>
</page>
Yes Correct, it is called multiple instances.
– LAW
Sep 14 '18 at 13:22
add a comment |
This is very simple, follow my guide below :
Step 1 : create file :
app/code/Company/Module/view/adminhtml/layout/sales_order_view.xml
With content :
<?xml version="1.0"?>
<!--
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name">
<action method="setTemplate">
<argument name="template" xsi:type="string">Company_Module::orders/items/column/name.phtml</argument>
</action>
</referenceBlock>
</body>
</page>
Step 2 : create phtml file :
app/code/Company/Module/view/adminhtml/templates/orders/items/column/name.phtml
Then put your code here
Does it work on your end?
– Jm Cabugnason
Sep 14 '18 at 7:32
Yes, it works on my end
– MICHELL RICHMOND
Sep 14 '18 at 9:53
add a comment |
You just need to make
app/design/adminhtml/templates/items/column/name.phtml(write your custom code here)
then do setup upgrade and setup static-content deploy
php bin/magento s:up
php bin/magento s:s:d
it's rare to create a theme for admin, I don't think that it's the right solution.
– PЯINCƏ
Sep 14 '18 at 9:22
add a comment |
override templates(.phtml) using custom theme
if you want to override vendormagentomodule-salesviewadminhtmltemplatesitemsname.phtml
first you need to create your custom theme, please refer this link for how to create a custom theme.
after that create phtml file in your custom theme to override the default one
app/design/frontend/vendor-name/theme-name/Magento_Catalog/templates/product/some.phtml
finally, clear the cache of Magento as well as the browser, then check your page, new phtml file only reflected.
in this way you can override templates
Best of Luck!
Thanks, but I'm referring on overriding the template from the admin's end.
– Jm Cabugnason
Sep 14 '18 at 7:35
then your file will be here magentoappdesignadminhtmlYourVendorYourThemeNameMagento_Backendviewadminhtmltemplatesproductsome.phtml
– Sanjay Vadadoriya
Sep 14 '18 at 7:39
Up vote my answer if helpful.. your welcome :)
– Sanjay Vadadoriya
Sep 14 '18 at 8:16
I already upvote it. But it will not reflect publicly since I have a low reputation.
– Jm Cabugnason
Sep 14 '18 at 8:19
He is looking foradmin
template, how do you want him to put it on` frontend` as you response ?
– PЯINCƏ
Sep 14 '18 at 9:11
|
show 2 more comments
I figured it how to achieve. I just created a theme specifically for backend and from there I extend the module.
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%2f242227%2fhow-to-override-vendor-magento-module-sales-view-adminhtml-templates-items-colum%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
At Magento2, from 7 layout items/column/name.phtml
called
sales_order_creditmemo_new.xml
sales_order_creditmemo_updateqty.xml
- sales_order_creditmemo_view.xml
- sales_order_invoice_new.xml
- sales_order_invoice_updateqty.xml
- sales_order_invoice_view.xml
- sales_order_view.xml
That you need to identify for which page, you want rewrite name.phtml
.
So, you will found out respective layout file and have to create that layout file on your custom module as mention by Michell process.
Suppose, you want to changes at invoice create page.
Then have to create
1.app/code/Company/Module/view/adminhtml/layout/sales_order_invoice_new.xml
Code
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name" template="Company_Module::orders/items/column/name.phtml"/>
</body>
</page>
Yes Correct, it is called multiple instances.
– LAW
Sep 14 '18 at 13:22
add a comment |
At Magento2, from 7 layout items/column/name.phtml
called
sales_order_creditmemo_new.xml
sales_order_creditmemo_updateqty.xml
- sales_order_creditmemo_view.xml
- sales_order_invoice_new.xml
- sales_order_invoice_updateqty.xml
- sales_order_invoice_view.xml
- sales_order_view.xml
That you need to identify for which page, you want rewrite name.phtml
.
So, you will found out respective layout file and have to create that layout file on your custom module as mention by Michell process.
Suppose, you want to changes at invoice create page.
Then have to create
1.app/code/Company/Module/view/adminhtml/layout/sales_order_invoice_new.xml
Code
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name" template="Company_Module::orders/items/column/name.phtml"/>
</body>
</page>
Yes Correct, it is called multiple instances.
– LAW
Sep 14 '18 at 13:22
add a comment |
At Magento2, from 7 layout items/column/name.phtml
called
sales_order_creditmemo_new.xml
sales_order_creditmemo_updateqty.xml
- sales_order_creditmemo_view.xml
- sales_order_invoice_new.xml
- sales_order_invoice_updateqty.xml
- sales_order_invoice_view.xml
- sales_order_view.xml
That you need to identify for which page, you want rewrite name.phtml
.
So, you will found out respective layout file and have to create that layout file on your custom module as mention by Michell process.
Suppose, you want to changes at invoice create page.
Then have to create
1.app/code/Company/Module/view/adminhtml/layout/sales_order_invoice_new.xml
Code
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name" template="Company_Module::orders/items/column/name.phtml"/>
</body>
</page>
At Magento2, from 7 layout items/column/name.phtml
called
sales_order_creditmemo_new.xml
sales_order_creditmemo_updateqty.xml
- sales_order_creditmemo_view.xml
- sales_order_invoice_new.xml
- sales_order_invoice_updateqty.xml
- sales_order_invoice_view.xml
- sales_order_view.xml
That you need to identify for which page, you want rewrite name.phtml
.
So, you will found out respective layout file and have to create that layout file on your custom module as mention by Michell process.
Suppose, you want to changes at invoice create page.
Then have to create
1.app/code/Company/Module/view/adminhtml/layout/sales_order_invoice_new.xml
Code
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name" template="Company_Module::orders/items/column/name.phtml"/>
</body>
</page>
answered Sep 14 '18 at 8:03
Amit Bera♦Amit Bera
58.2k1475174
58.2k1475174
Yes Correct, it is called multiple instances.
– LAW
Sep 14 '18 at 13:22
add a comment |
Yes Correct, it is called multiple instances.
– LAW
Sep 14 '18 at 13:22
Yes Correct, it is called multiple instances.
– LAW
Sep 14 '18 at 13:22
Yes Correct, it is called multiple instances.
– LAW
Sep 14 '18 at 13:22
add a comment |
This is very simple, follow my guide below :
Step 1 : create file :
app/code/Company/Module/view/adminhtml/layout/sales_order_view.xml
With content :
<?xml version="1.0"?>
<!--
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name">
<action method="setTemplate">
<argument name="template" xsi:type="string">Company_Module::orders/items/column/name.phtml</argument>
</action>
</referenceBlock>
</body>
</page>
Step 2 : create phtml file :
app/code/Company/Module/view/adminhtml/templates/orders/items/column/name.phtml
Then put your code here
Does it work on your end?
– Jm Cabugnason
Sep 14 '18 at 7:32
Yes, it works on my end
– MICHELL RICHMOND
Sep 14 '18 at 9:53
add a comment |
This is very simple, follow my guide below :
Step 1 : create file :
app/code/Company/Module/view/adminhtml/layout/sales_order_view.xml
With content :
<?xml version="1.0"?>
<!--
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name">
<action method="setTemplate">
<argument name="template" xsi:type="string">Company_Module::orders/items/column/name.phtml</argument>
</action>
</referenceBlock>
</body>
</page>
Step 2 : create phtml file :
app/code/Company/Module/view/adminhtml/templates/orders/items/column/name.phtml
Then put your code here
Does it work on your end?
– Jm Cabugnason
Sep 14 '18 at 7:32
Yes, it works on my end
– MICHELL RICHMOND
Sep 14 '18 at 9:53
add a comment |
This is very simple, follow my guide below :
Step 1 : create file :
app/code/Company/Module/view/adminhtml/layout/sales_order_view.xml
With content :
<?xml version="1.0"?>
<!--
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name">
<action method="setTemplate">
<argument name="template" xsi:type="string">Company_Module::orders/items/column/name.phtml</argument>
</action>
</referenceBlock>
</body>
</page>
Step 2 : create phtml file :
app/code/Company/Module/view/adminhtml/templates/orders/items/column/name.phtml
Then put your code here
This is very simple, follow my guide below :
Step 1 : create file :
app/code/Company/Module/view/adminhtml/layout/sales_order_view.xml
With content :
<?xml version="1.0"?>
<!--
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="column_name">
<action method="setTemplate">
<argument name="template" xsi:type="string">Company_Module::orders/items/column/name.phtml</argument>
</action>
</referenceBlock>
</body>
</page>
Step 2 : create phtml file :
app/code/Company/Module/view/adminhtml/templates/orders/items/column/name.phtml
Then put your code here
answered Sep 14 '18 at 7:01
MICHELL RICHMONDMICHELL RICHMOND
116
116
Does it work on your end?
– Jm Cabugnason
Sep 14 '18 at 7:32
Yes, it works on my end
– MICHELL RICHMOND
Sep 14 '18 at 9:53
add a comment |
Does it work on your end?
– Jm Cabugnason
Sep 14 '18 at 7:32
Yes, it works on my end
– MICHELL RICHMOND
Sep 14 '18 at 9:53
Does it work on your end?
– Jm Cabugnason
Sep 14 '18 at 7:32
Does it work on your end?
– Jm Cabugnason
Sep 14 '18 at 7:32
Yes, it works on my end
– MICHELL RICHMOND
Sep 14 '18 at 9:53
Yes, it works on my end
– MICHELL RICHMOND
Sep 14 '18 at 9:53
add a comment |
You just need to make
app/design/adminhtml/templates/items/column/name.phtml(write your custom code here)
then do setup upgrade and setup static-content deploy
php bin/magento s:up
php bin/magento s:s:d
it's rare to create a theme for admin, I don't think that it's the right solution.
– PЯINCƏ
Sep 14 '18 at 9:22
add a comment |
You just need to make
app/design/adminhtml/templates/items/column/name.phtml(write your custom code here)
then do setup upgrade and setup static-content deploy
php bin/magento s:up
php bin/magento s:s:d
it's rare to create a theme for admin, I don't think that it's the right solution.
– PЯINCƏ
Sep 14 '18 at 9:22
add a comment |
You just need to make
app/design/adminhtml/templates/items/column/name.phtml(write your custom code here)
then do setup upgrade and setup static-content deploy
php bin/magento s:up
php bin/magento s:s:d
You just need to make
app/design/adminhtml/templates/items/column/name.phtml(write your custom code here)
then do setup upgrade and setup static-content deploy
php bin/magento s:up
php bin/magento s:s:d
answered Sep 14 '18 at 7:10
Rutvee SojitraRutvee Sojitra
1,4661121
1,4661121
it's rare to create a theme for admin, I don't think that it's the right solution.
– PЯINCƏ
Sep 14 '18 at 9:22
add a comment |
it's rare to create a theme for admin, I don't think that it's the right solution.
– PЯINCƏ
Sep 14 '18 at 9:22
it's rare to create a theme for admin, I don't think that it's the right solution.
– PЯINCƏ
Sep 14 '18 at 9:22
it's rare to create a theme for admin, I don't think that it's the right solution.
– PЯINCƏ
Sep 14 '18 at 9:22
add a comment |
override templates(.phtml) using custom theme
if you want to override vendormagentomodule-salesviewadminhtmltemplatesitemsname.phtml
first you need to create your custom theme, please refer this link for how to create a custom theme.
after that create phtml file in your custom theme to override the default one
app/design/frontend/vendor-name/theme-name/Magento_Catalog/templates/product/some.phtml
finally, clear the cache of Magento as well as the browser, then check your page, new phtml file only reflected.
in this way you can override templates
Best of Luck!
Thanks, but I'm referring on overriding the template from the admin's end.
– Jm Cabugnason
Sep 14 '18 at 7:35
then your file will be here magentoappdesignadminhtmlYourVendorYourThemeNameMagento_Backendviewadminhtmltemplatesproductsome.phtml
– Sanjay Vadadoriya
Sep 14 '18 at 7:39
Up vote my answer if helpful.. your welcome :)
– Sanjay Vadadoriya
Sep 14 '18 at 8:16
I already upvote it. But it will not reflect publicly since I have a low reputation.
– Jm Cabugnason
Sep 14 '18 at 8:19
He is looking foradmin
template, how do you want him to put it on` frontend` as you response ?
– PЯINCƏ
Sep 14 '18 at 9:11
|
show 2 more comments
override templates(.phtml) using custom theme
if you want to override vendormagentomodule-salesviewadminhtmltemplatesitemsname.phtml
first you need to create your custom theme, please refer this link for how to create a custom theme.
after that create phtml file in your custom theme to override the default one
app/design/frontend/vendor-name/theme-name/Magento_Catalog/templates/product/some.phtml
finally, clear the cache of Magento as well as the browser, then check your page, new phtml file only reflected.
in this way you can override templates
Best of Luck!
Thanks, but I'm referring on overriding the template from the admin's end.
– Jm Cabugnason
Sep 14 '18 at 7:35
then your file will be here magentoappdesignadminhtmlYourVendorYourThemeNameMagento_Backendviewadminhtmltemplatesproductsome.phtml
– Sanjay Vadadoriya
Sep 14 '18 at 7:39
Up vote my answer if helpful.. your welcome :)
– Sanjay Vadadoriya
Sep 14 '18 at 8:16
I already upvote it. But it will not reflect publicly since I have a low reputation.
– Jm Cabugnason
Sep 14 '18 at 8:19
He is looking foradmin
template, how do you want him to put it on` frontend` as you response ?
– PЯINCƏ
Sep 14 '18 at 9:11
|
show 2 more comments
override templates(.phtml) using custom theme
if you want to override vendormagentomodule-salesviewadminhtmltemplatesitemsname.phtml
first you need to create your custom theme, please refer this link for how to create a custom theme.
after that create phtml file in your custom theme to override the default one
app/design/frontend/vendor-name/theme-name/Magento_Catalog/templates/product/some.phtml
finally, clear the cache of Magento as well as the browser, then check your page, new phtml file only reflected.
in this way you can override templates
Best of Luck!
override templates(.phtml) using custom theme
if you want to override vendormagentomodule-salesviewadminhtmltemplatesitemsname.phtml
first you need to create your custom theme, please refer this link for how to create a custom theme.
after that create phtml file in your custom theme to override the default one
app/design/frontend/vendor-name/theme-name/Magento_Catalog/templates/product/some.phtml
finally, clear the cache of Magento as well as the browser, then check your page, new phtml file only reflected.
in this way you can override templates
Best of Luck!
edited Sep 14 '18 at 7:31
Rama Chandran M
2,72181530
2,72181530
answered Sep 14 '18 at 7:13
Sanjay VadadoriyaSanjay Vadadoriya
567
567
Thanks, but I'm referring on overriding the template from the admin's end.
– Jm Cabugnason
Sep 14 '18 at 7:35
then your file will be here magentoappdesignadminhtmlYourVendorYourThemeNameMagento_Backendviewadminhtmltemplatesproductsome.phtml
– Sanjay Vadadoriya
Sep 14 '18 at 7:39
Up vote my answer if helpful.. your welcome :)
– Sanjay Vadadoriya
Sep 14 '18 at 8:16
I already upvote it. But it will not reflect publicly since I have a low reputation.
– Jm Cabugnason
Sep 14 '18 at 8:19
He is looking foradmin
template, how do you want him to put it on` frontend` as you response ?
– PЯINCƏ
Sep 14 '18 at 9:11
|
show 2 more comments
Thanks, but I'm referring on overriding the template from the admin's end.
– Jm Cabugnason
Sep 14 '18 at 7:35
then your file will be here magentoappdesignadminhtmlYourVendorYourThemeNameMagento_Backendviewadminhtmltemplatesproductsome.phtml
– Sanjay Vadadoriya
Sep 14 '18 at 7:39
Up vote my answer if helpful.. your welcome :)
– Sanjay Vadadoriya
Sep 14 '18 at 8:16
I already upvote it. But it will not reflect publicly since I have a low reputation.
– Jm Cabugnason
Sep 14 '18 at 8:19
He is looking foradmin
template, how do you want him to put it on` frontend` as you response ?
– PЯINCƏ
Sep 14 '18 at 9:11
Thanks, but I'm referring on overriding the template from the admin's end.
– Jm Cabugnason
Sep 14 '18 at 7:35
Thanks, but I'm referring on overriding the template from the admin's end.
– Jm Cabugnason
Sep 14 '18 at 7:35
then your file will be here magentoappdesignadminhtmlYourVendorYourThemeNameMagento_Backendviewadminhtmltemplatesproductsome.phtml
– Sanjay Vadadoriya
Sep 14 '18 at 7:39
then your file will be here magentoappdesignadminhtmlYourVendorYourThemeNameMagento_Backendviewadminhtmltemplatesproductsome.phtml
– Sanjay Vadadoriya
Sep 14 '18 at 7:39
Up vote my answer if helpful.. your welcome :)
– Sanjay Vadadoriya
Sep 14 '18 at 8:16
Up vote my answer if helpful.. your welcome :)
– Sanjay Vadadoriya
Sep 14 '18 at 8:16
I already upvote it. But it will not reflect publicly since I have a low reputation.
– Jm Cabugnason
Sep 14 '18 at 8:19
I already upvote it. But it will not reflect publicly since I have a low reputation.
– Jm Cabugnason
Sep 14 '18 at 8:19
He is looking for
admin
template, how do you want him to put it on` frontend` as you response ?– PЯINCƏ
Sep 14 '18 at 9:11
He is looking for
admin
template, how do you want him to put it on` frontend` as you response ?– PЯINCƏ
Sep 14 '18 at 9:11
|
show 2 more comments
I figured it how to achieve. I just created a theme specifically for backend and from there I extend the module.
add a comment |
I figured it how to achieve. I just created a theme specifically for backend and from there I extend the module.
add a comment |
I figured it how to achieve. I just created a theme specifically for backend and from there I extend the module.
I figured it how to achieve. I just created a theme specifically for backend and from there I extend the module.
edited 49 mins ago
Teja Bhagavan Kollepara
2,94841847
2,94841847
answered Sep 20 '18 at 8:32
Jm CabugnasonJm Cabugnason
614
614
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%2f242227%2fhow-to-override-vendor-magento-module-sales-view-adminhtml-templates-items-colum%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