How can override .xml file?Magento 2 - How to add a custom column in customer gridMagento 2 + Custom column added sku on grid not showing data in export filegrid column filter based on existing valuesMagento 2: How to override UI component XML grid?Magento 2 add data to custom column (sales order grid)Add Drop Down in Magento2 gridMagento 2 bar disappeared in Sales Order Grid after adding columnMAGENTO 2 Orders Grid Add SKU and Export to CSVFilter a custom attribute in Sales Order GridMagento 2: Add invoice Increment ID to Order grid
How should I address a possible mistake to co-authors in a submitted paper
Do we have to expect a queue for the shuttle from Watford Junction to Harry Potter Studio?
Why does the Sun have different day lengths, but not the gas giants?
PTIJ: Haman's bad computer
Does the Linux kernel need a file system to run?
Electoral considerations aside, what are potential benefits, for the US, of policy changes proposed by the tweet recognizing Golan annexation?
Lowest total scrabble score
What is the highest possible scrabble score for placing a single tile
Make a Bowl of Alphabet Soup
Do the primes contain an infinite almost arithmetic progression?
Multiplicative persistence
Why is it that I can sometimes guess the next note?
Why Shazam when there is already Superman?
putting logo on same line but after title, latex
Probability that THHT occurs in a sequence of 10 coin tosses
Did arcade monitors have same pixel aspect ratio as TV sets?
Can a stoichiometric mixture of oxygen and methane exist as a liquid at standard pressure and some (low) temperature?
Creepy dinosaur pc game identification
Does malloc reserve more space while allocating memory?
What is Cash Advance APR?
Unexpected behavior of the procedure `Area` on the object 'Polygon'
What are the advantages of simplicial model categories over non-simplicial ones?
Invalid date error by date command
System.QueryException unexpected token
How can override .xml file?
Magento 2 - How to add a custom column in customer gridMagento 2 + Custom column added sku on grid not showing data in export filegrid column filter based on existing valuesMagento 2: How to override UI component XML grid?Magento 2 add data to custom column (sales order grid)Add Drop Down in Magento2 gridMagento 2 bar disappeared in Sales Order Grid after adding columnMAGENTO 2 Orders Grid Add SKU and Export to CSVFilter a custom attribute in Sales Order GridMagento 2: Add invoice Increment ID to Order grid
I want to override this class
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
Actually I want to make customize the Grand Total Column in sales order grid
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
I want to give a custom class for this column value
which directory can I make to override this class ?
Can anyone help me?
magento2 adminhtml
add a comment |
I want to override this class
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
Actually I want to make customize the Grand Total Column in sales order grid
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
I want to give a custom class for this column value
which directory can I make to override this class ?
Can anyone help me?
magento2 adminhtml
add a comment |
I want to override this class
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
Actually I want to make customize the Grand Total Column in sales order grid
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
I want to give a custom class for this column value
which directory can I make to override this class ?
Can anyone help me?
magento2 adminhtml
I want to override this class
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
Actually I want to make customize the Grand Total Column in sales order grid
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
I want to give a custom class for this column value
which directory can I make to override this class ?
Can anyone help me?
magento2 adminhtml
magento2 adminhtml
edited yesterday
PЯINCƏ
8,37131144
8,37131144
asked yesterday
HaFiz UmerHaFiz Umer
3609
3609
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
You can do it using a custom module.
First, you have to copy
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
in your custom module, from this path:
vendorcustomModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
</columns>
</listing>
and from there you can make any changes you want.
After that, don't forget to run upgrade and redeploy static contents
No Effect ! it not override . again hit to vendor filevendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
– HaFiz Umer
yesterday
what? the code above works on my local machine tho. of course , you have to changeyour_vendor_nameyour_custom_Module_nameviewadminhtmlui_componentsales_order_grid.xml
– magefms
yesterday
assuming you have your custom module already , you just have to add those and it will work
– magefms
yesterday
follow this on how to create custom module magestore.com/magento-2-tutorial/magento-2-modules
– magefms
yesterday
1
magefms i developing multi vendor site order already filter but make grand total custom. mean vendors see own product grand total. i make logic. just now want to override.
– HaFiz Umer
yesterday
|
show 4 more comments
Check the below code it might help you.
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="XX_xxx" setup_version="1.0.1" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
add a comment |
- app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml
//content goes here...
- app/code/Vendor/Modulename/etc/module.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Vendor_Modulename" setup_version="1.1.2" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
- php bin/magento c:f
no it also not overridesales_order_grid.xmlfile again hit to the vendor
– HaFiz Umer
17 hours ago
I confirm you that it works and tested ! Try to clear all caches, check the other modules, maybe it override too that xml
– PЯINCƏ
15 hours ago
stuck from last day ! and now try to make admin theme then try to override .xml files
– HaFiz Umer
14 hours ago
i did it. nowsales_order_view.xmlfile is override. But i override viaadmin themei make admin theme and apply theme from custom module
– HaFiz Umer
14 hours ago
1
yes, a admin theme have a hight priority that module
– PЯINCƏ
13 hours ago
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%2f266830%2fhow-can-override-xml-file%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
You can do it using a custom module.
First, you have to copy
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
in your custom module, from this path:
vendorcustomModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
</columns>
</listing>
and from there you can make any changes you want.
After that, don't forget to run upgrade and redeploy static contents
No Effect ! it not override . again hit to vendor filevendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
– HaFiz Umer
yesterday
what? the code above works on my local machine tho. of course , you have to changeyour_vendor_nameyour_custom_Module_nameviewadminhtmlui_componentsales_order_grid.xml
– magefms
yesterday
assuming you have your custom module already , you just have to add those and it will work
– magefms
yesterday
follow this on how to create custom module magestore.com/magento-2-tutorial/magento-2-modules
– magefms
yesterday
1
magefms i developing multi vendor site order already filter but make grand total custom. mean vendors see own product grand total. i make logic. just now want to override.
– HaFiz Umer
yesterday
|
show 4 more comments
You can do it using a custom module.
First, you have to copy
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
in your custom module, from this path:
vendorcustomModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
</columns>
</listing>
and from there you can make any changes you want.
After that, don't forget to run upgrade and redeploy static contents
No Effect ! it not override . again hit to vendor filevendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
– HaFiz Umer
yesterday
what? the code above works on my local machine tho. of course , you have to changeyour_vendor_nameyour_custom_Module_nameviewadminhtmlui_componentsales_order_grid.xml
– magefms
yesterday
assuming you have your custom module already , you just have to add those and it will work
– magefms
yesterday
follow this on how to create custom module magestore.com/magento-2-tutorial/magento-2-modules
– magefms
yesterday
1
magefms i developing multi vendor site order already filter but make grand total custom. mean vendors see own product grand total. i make logic. just now want to override.
– HaFiz Umer
yesterday
|
show 4 more comments
You can do it using a custom module.
First, you have to copy
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
in your custom module, from this path:
vendorcustomModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
</columns>
</listing>
and from there you can make any changes you want.
After that, don't forget to run upgrade and redeploy static contents
You can do it using a custom module.
First, you have to copy
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
in your custom module, from this path:
vendorcustomModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="base_grand_total" class="MagentoSalesUiComponentListingColumnPrice">
<settings>
<filter>textRange</filter>
<label translate="true">Grand Total (Base)</label>
</settings>
</column>
</columns>
</listing>
and from there you can make any changes you want.
After that, don't forget to run upgrade and redeploy static contents
answered yesterday
magefmsmagefms
1,9271425
1,9271425
No Effect ! it not override . again hit to vendor filevendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
– HaFiz Umer
yesterday
what? the code above works on my local machine tho. of course , you have to changeyour_vendor_nameyour_custom_Module_nameviewadminhtmlui_componentsales_order_grid.xml
– magefms
yesterday
assuming you have your custom module already , you just have to add those and it will work
– magefms
yesterday
follow this on how to create custom module magestore.com/magento-2-tutorial/magento-2-modules
– magefms
yesterday
1
magefms i developing multi vendor site order already filter but make grand total custom. mean vendors see own product grand total. i make logic. just now want to override.
– HaFiz Umer
yesterday
|
show 4 more comments
No Effect ! it not override . again hit to vendor filevendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml
– HaFiz Umer
yesterday
what? the code above works on my local machine tho. of course , you have to changeyour_vendor_nameyour_custom_Module_nameviewadminhtmlui_componentsales_order_grid.xml
– magefms
yesterday
assuming you have your custom module already , you just have to add those and it will work
– magefms
yesterday
follow this on how to create custom module magestore.com/magento-2-tutorial/magento-2-modules
– magefms
yesterday
1
magefms i developing multi vendor site order already filter but make grand total custom. mean vendors see own product grand total. i make logic. just now want to override.
– HaFiz Umer
yesterday
No Effect ! it not override . again hit to vendor file
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml– HaFiz Umer
yesterday
No Effect ! it not override . again hit to vendor file
vendor/magento/module-sales/view/adminhtml/ui_component/sales_order_grid.xml– HaFiz Umer
yesterday
what? the code above works on my local machine tho. of course , you have to change
your_vendor_nameyour_custom_Module_nameviewadminhtmlui_componentsales_order_grid.xml– magefms
yesterday
what? the code above works on my local machine tho. of course , you have to change
your_vendor_nameyour_custom_Module_nameviewadminhtmlui_componentsales_order_grid.xml– magefms
yesterday
assuming you have your custom module already , you just have to add those and it will work
– magefms
yesterday
assuming you have your custom module already , you just have to add those and it will work
– magefms
yesterday
follow this on how to create custom module magestore.com/magento-2-tutorial/magento-2-modules
– magefms
yesterday
follow this on how to create custom module magestore.com/magento-2-tutorial/magento-2-modules
– magefms
yesterday
1
1
magefms i developing multi vendor site order already filter but make grand total custom. mean vendors see own product grand total. i make logic. just now want to override.
– HaFiz Umer
yesterday
magefms i developing multi vendor site order already filter but make grand total custom. mean vendors see own product grand total. i make logic. just now want to override.
– HaFiz Umer
yesterday
|
show 4 more comments
Check the below code it might help you.
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="XX_xxx" setup_version="1.0.1" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
add a comment |
Check the below code it might help you.
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="XX_xxx" setup_version="1.0.1" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
add a comment |
Check the below code it might help you.
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="XX_xxx" setup_version="1.0.1" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
Check the below code it might help you.
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="XX_xxx" setup_version="1.0.1" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
answered yesterday
Purnendar GattuPurnendar Gattu
555
555
add a comment |
add a comment |
- app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml
//content goes here...
- app/code/Vendor/Modulename/etc/module.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Vendor_Modulename" setup_version="1.1.2" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
- php bin/magento c:f
no it also not overridesales_order_grid.xmlfile again hit to the vendor
– HaFiz Umer
17 hours ago
I confirm you that it works and tested ! Try to clear all caches, check the other modules, maybe it override too that xml
– PЯINCƏ
15 hours ago
stuck from last day ! and now try to make admin theme then try to override .xml files
– HaFiz Umer
14 hours ago
i did it. nowsales_order_view.xmlfile is override. But i override viaadmin themei make admin theme and apply theme from custom module
– HaFiz Umer
14 hours ago
1
yes, a admin theme have a hight priority that module
– PЯINCƏ
13 hours ago
add a comment |
- app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml
//content goes here...
- app/code/Vendor/Modulename/etc/module.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Vendor_Modulename" setup_version="1.1.2" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
- php bin/magento c:f
no it also not overridesales_order_grid.xmlfile again hit to the vendor
– HaFiz Umer
17 hours ago
I confirm you that it works and tested ! Try to clear all caches, check the other modules, maybe it override too that xml
– PЯINCƏ
15 hours ago
stuck from last day ! and now try to make admin theme then try to override .xml files
– HaFiz Umer
14 hours ago
i did it. nowsales_order_view.xmlfile is override. But i override viaadmin themei make admin theme and apply theme from custom module
– HaFiz Umer
14 hours ago
1
yes, a admin theme have a hight priority that module
– PЯINCƏ
13 hours ago
add a comment |
- app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml
//content goes here...
- app/code/Vendor/Modulename/etc/module.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Vendor_Modulename" setup_version="1.1.2" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
- php bin/magento c:f
- app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml
//content goes here...
- app/code/Vendor/Modulename/etc/module.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Vendor_Modulename" setup_version="1.1.2" active="true">
<sequence>
<module name="Magento_Sales" />
</sequence>
</module>
</config>
- php bin/magento c:f
answered 23 hours ago
PЯINCƏPЯINCƏ
8,37131144
8,37131144
no it also not overridesales_order_grid.xmlfile again hit to the vendor
– HaFiz Umer
17 hours ago
I confirm you that it works and tested ! Try to clear all caches, check the other modules, maybe it override too that xml
– PЯINCƏ
15 hours ago
stuck from last day ! and now try to make admin theme then try to override .xml files
– HaFiz Umer
14 hours ago
i did it. nowsales_order_view.xmlfile is override. But i override viaadmin themei make admin theme and apply theme from custom module
– HaFiz Umer
14 hours ago
1
yes, a admin theme have a hight priority that module
– PЯINCƏ
13 hours ago
add a comment |
no it also not overridesales_order_grid.xmlfile again hit to the vendor
– HaFiz Umer
17 hours ago
I confirm you that it works and tested ! Try to clear all caches, check the other modules, maybe it override too that xml
– PЯINCƏ
15 hours ago
stuck from last day ! and now try to make admin theme then try to override .xml files
– HaFiz Umer
14 hours ago
i did it. nowsales_order_view.xmlfile is override. But i override viaadmin themei make admin theme and apply theme from custom module
– HaFiz Umer
14 hours ago
1
yes, a admin theme have a hight priority that module
– PЯINCƏ
13 hours ago
no it also not override
sales_order_grid.xml file again hit to the vendor– HaFiz Umer
17 hours ago
no it also not override
sales_order_grid.xml file again hit to the vendor– HaFiz Umer
17 hours ago
I confirm you that it works and tested ! Try to clear all caches, check the other modules, maybe it override too that xml
– PЯINCƏ
15 hours ago
I confirm you that it works and tested ! Try to clear all caches, check the other modules, maybe it override too that xml
– PЯINCƏ
15 hours ago
stuck from last day ! and now try to make admin theme then try to override .xml files
– HaFiz Umer
14 hours ago
stuck from last day ! and now try to make admin theme then try to override .xml files
– HaFiz Umer
14 hours ago
i did it. now
sales_order_view.xml file is override. But i override via admin theme i make admin theme and apply theme from custom module– HaFiz Umer
14 hours ago
i did it. now
sales_order_view.xml file is override. But i override via admin theme i make admin theme and apply theme from custom module– HaFiz Umer
14 hours ago
1
1
yes, a admin theme have a hight priority that module
– PЯINCƏ
13 hours ago
yes, a admin theme have a hight priority that module
– PЯINCƏ
13 hours ago
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%2f266830%2fhow-can-override-xml-file%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