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













1















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?










share|improve this question




























    1















    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?










    share|improve this question


























      1












      1








      1








      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited yesterday









      PЯINCƏ

      8,37131144




      8,37131144










      asked yesterday









      HaFiz UmerHaFiz Umer

      3609




      3609




















          3 Answers
          3






          active

          oldest

          votes


















          0














          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






          share|improve this answer























          • 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











          • 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


















          0














          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>





          share|improve this answer






























            0















            1. app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml



            //content goes here...



            1. 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>



            1. php bin/magento c:f






            share|improve this answer























            • 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












            • 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






            • 1





              yes, a admin theme have a hight priority that module

              – PЯINCƏ
              13 hours ago










            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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






            share|improve this answer























            • 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











            • 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















            0














            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






            share|improve this answer























            • 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











            • 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













            0












            0








            0







            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






            share|improve this answer













            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







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered yesterday









            magefmsmagefms

            1,9271425




            1,9271425












            • 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











            • 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











            • 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











            • 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













            0














            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>





            share|improve this answer



























              0














              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>





              share|improve this answer

























                0












                0








                0







                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>





                share|improve this answer













                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>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered yesterday









                Purnendar GattuPurnendar Gattu

                555




                555





















                    0















                    1. app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml



                    //content goes here...



                    1. 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>



                    1. php bin/magento c:f






                    share|improve this answer























                    • 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












                    • 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






                    • 1





                      yes, a admin theme have a hight priority that module

                      – PЯINCƏ
                      13 hours ago















                    0















                    1. app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml



                    //content goes here...



                    1. 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>



                    1. php bin/magento c:f






                    share|improve this answer























                    • 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












                    • 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






                    • 1





                      yes, a admin theme have a hight priority that module

                      – PЯINCƏ
                      13 hours ago













                    0












                    0








                    0








                    1. app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml



                    //content goes here...



                    1. 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>



                    1. php bin/magento c:f






                    share|improve this answer














                    1. app/code/Vendor/Modulename/view/adminhtml/ui_component/sales_order_grid.xml



                    //content goes here...



                    1. 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>



                    1. php bin/magento c:f







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered 23 hours ago









                    PЯINCƏPЯINCƏ

                    8,37131144




                    8,37131144












                    • 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












                    • 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






                    • 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











                    • 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. 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





                      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

















                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Bulk add to cart function issuecart vs. mini cart issue … rwd themeRedirect Add to cart button to cart pageAdd to cart issue - Magento 2.1The requested Payment Method is not available When creating an orderM2: reason add-to-cart might not function in production modeAdd to cart issue in some android devicesMagento 2 - custom price can not add to subtotal and grand total after add to cartAdd to cart codeIssue with my cart module on pdp and cart pages, just keeps spinningBulk price and quantity update using rest api

                    БиармияSxpst500bh2ntaf! 3h2r