How to change checkout page field label in 2.1.7? Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How do you edit checkout field labels in Magento 2?Change ZIP to POSTCODE in Estimate ShippingHow to chage the label of region_id field in checkout formHow to hide or remove state/province field from billing pageHow to modify a label to a field in checkout page?How to edit and change checkout field labels in Magento 2?Change Payment Method Label for imageHow to change field order in checkout and change label namesHow can I edit menu Label (Description) in Magento-2?Change header label “sign in” to “log in” in magento 2Magento 2 Changing checkout page shipping state field as dropdwn

Kepler's 3rd law: ratios don't fit data

Who can become a wight?

Why doesn't the university give past final exams' answers?

How to mute a string and play another at the same time

Proving inequality for positive definite matrix

What were wait-states, and why was it only an issue for PCs?

Where is Bhagavad Gita referred to as Hari Gita?

What's the difference between using dependency injection with a container and using a service locator?

What is the ongoing value of the Kanban board to the developers as opposed to management

What helicopter has the most rotor blades?

Putting Ant-Man on house arrest

Assertions In A Mock Callout Test

Why not use the yoke to control yaw, as well as pitch and roll?

Why aren't these two solutions equivalent? Combinatorics problem

Should man-made satellites feature an intelligent inverted "cow catcher"?

A journey... into the MIND

How to make an animal which can only breed for a certain number of generations?

How to leave only the following strings?

Providing direct feedback to a product salesperson

When speaking, how do you change your mind mid-sentence?

Can a Knight grant Knighthood to another?

Lights are flickering on and off after accidentally bumping into light switch

What is the evidence that custom checks in Northern Ireland are going to result in violence?

false 'Security alert' from Google - every login generates mails from 'no-reply@accounts.google.com'



How to change checkout page field label in 2.1.7?



Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?How do you edit checkout field labels in Magento 2?Change ZIP to POSTCODE in Estimate ShippingHow to chage the label of region_id field in checkout formHow to hide or remove state/province field from billing pageHow to modify a label to a field in checkout page?How to edit and change checkout field labels in Magento 2?Change Payment Method Label for imageHow to change field order in checkout and change label namesHow can I edit menu Label (Description) in Magento-2?Change header label “sign in” to “log in” in magento 2Magento 2 Changing checkout page shipping state field as dropdwn



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















enter image description here



I want to change State/Province label. How can I do it?










share|improve this question






























    2















    enter image description here



    I want to change State/Province label. How can I do it?










    share|improve this question


























      2












      2








      2








      enter image description here



      I want to change State/Province label. How can I do it?










      share|improve this question
















      enter image description here



      I want to change State/Province label. How can I do it?







      magento-2.1 shipping onepage-checkout payment-methods






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 26 '17 at 9:18









      Mohit Kumar Arora

      6,89851634




      6,89851634










      asked Jun 26 '17 at 8:26









      bhautikbhautik

      112




      112




















          3 Answers
          3






          active

          oldest

          votes


















          1














          Hope it's helpful



          Way 1 :
          If you want to change the shipping address fields as well as billing address fields, You can do via theme transaction if you have made a custom theme as per your language.




          i.e: en_US




          Way 2:
          If you change made in shipping address fields only, Please override LayoutProcessor.php



          Step 1 di.xml




          path: app/code/vendor/module_name/etc




          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
          <type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
          <plugin name="Custom_Checkout" type="AmeexFasBlockLayoutProcessor" sortOrder="100"/>
          </type>
          </config>


          Step 2:
          LayoutProcessor.php




          path:app/code/vendor/module_name/Block/




           public function afterProcess(
          MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
          array $jsLayout
          )
          $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
          ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['lastname']['label'] = __('Recipient lastname');

          $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
          ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['region_id']['label'] = __('Division');

          return $jsLayout;

          }


          It's work like charm






          share|improve this answer
































            0














            According to this topic How do you edit checkout field labels in Magento 2? (sorry, wouldn't let me post as comment)




            Translation for State/Province and Zip/Postal Code is found (by
            default) in /vendor/magento/module-checkout/i18n directory.



            You can copy locale's csv file from
            /vendor/magento/module-checkout/i18n folder to
            app/code/Magento/module-checkout/i18n directory.



            Then find the text and change its translation.



            After saving file, don't forget to remove content from /var/cache
            folder and /var/page_cache folder.







            share|improve this answer






























              0














              You can overwrite below function for changing the Label at cart page in the file: vendor/magento/module-checkout/Block/Cart/LayoutProcessor.php



              public function process($jsLayout)

              $elements = [
              'city' => [
              'visible' => $this->isCityActive(),
              'formElement' => 'input',
              'label' => __('City'),
              'value' => null
              ],
              'country_id' => [
              'visible' => true,
              'formElement' => 'select',
              'label' => __('Country'),
              'options' => [],
              'value' => null
              ],
              'region_id' => [
              'visible' => true,
              'formElement' => 'select',
              'label' => __('State/Province'),
              'options' => [],
              'value' => null
              ],
              'postcode' => [
              'visible' => true,
              'formElement' => 'input',
              'label' => __('Zip/Postal Code'),
              'value' => null
              ]
              ];

              if (!isset($jsLayout['components']['checkoutProvider']['dictionaries']))
              $jsLayout['components']['checkoutProvider']['dictionaries'] = [
              'country_id' => $this->countryCollection->loadByStore()->toOptionArray(),
              'region_id' => $this->regionCollection->addAllowedCountriesFilter()->toOptionArray(),
              ];


              if (isset($jsLayout['components']['block-summary']['children']['block-shipping']['children']
              ['address-fieldsets']['children'])
              )
              $fieldSetPointer = &$jsLayout['components']['block-summary']['children']['block-shipping']
              ['children']['address-fieldsets']['children'];
              $fieldSetPointer = $this->merger->merge($elements, 'checkoutProvider', 'shippingAddress', $fieldSetPointer);
              $fieldSetPointer['region_id']['config']['skipValidation'] = true;

              return $jsLayout;






              share|improve this answer























                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%2f180680%2fhow-to-change-checkout-page-field-label-in-2-1-7%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









                1














                Hope it's helpful



                Way 1 :
                If you want to change the shipping address fields as well as billing address fields, You can do via theme transaction if you have made a custom theme as per your language.




                i.e: en_US




                Way 2:
                If you change made in shipping address fields only, Please override LayoutProcessor.php



                Step 1 di.xml




                path: app/code/vendor/module_name/etc




                <?xml version="1.0"?>
                <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
                <type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
                <plugin name="Custom_Checkout" type="AmeexFasBlockLayoutProcessor" sortOrder="100"/>
                </type>
                </config>


                Step 2:
                LayoutProcessor.php




                path:app/code/vendor/module_name/Block/




                 public function afterProcess(
                MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
                array $jsLayout
                )
                $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
                ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['lastname']['label'] = __('Recipient lastname');

                $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
                ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['region_id']['label'] = __('Division');

                return $jsLayout;

                }


                It's work like charm






                share|improve this answer





























                  1














                  Hope it's helpful



                  Way 1 :
                  If you want to change the shipping address fields as well as billing address fields, You can do via theme transaction if you have made a custom theme as per your language.




                  i.e: en_US




                  Way 2:
                  If you change made in shipping address fields only, Please override LayoutProcessor.php



                  Step 1 di.xml




                  path: app/code/vendor/module_name/etc




                  <?xml version="1.0"?>
                  <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
                  <type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
                  <plugin name="Custom_Checkout" type="AmeexFasBlockLayoutProcessor" sortOrder="100"/>
                  </type>
                  </config>


                  Step 2:
                  LayoutProcessor.php




                  path:app/code/vendor/module_name/Block/




                   public function afterProcess(
                  MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
                  array $jsLayout
                  )
                  $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
                  ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['lastname']['label'] = __('Recipient lastname');

                  $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
                  ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['region_id']['label'] = __('Division');

                  return $jsLayout;

                  }


                  It's work like charm






                  share|improve this answer



























                    1












                    1








                    1







                    Hope it's helpful



                    Way 1 :
                    If you want to change the shipping address fields as well as billing address fields, You can do via theme transaction if you have made a custom theme as per your language.




                    i.e: en_US




                    Way 2:
                    If you change made in shipping address fields only, Please override LayoutProcessor.php



                    Step 1 di.xml




                    path: app/code/vendor/module_name/etc




                    <?xml version="1.0"?>
                    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
                    <type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
                    <plugin name="Custom_Checkout" type="AmeexFasBlockLayoutProcessor" sortOrder="100"/>
                    </type>
                    </config>


                    Step 2:
                    LayoutProcessor.php




                    path:app/code/vendor/module_name/Block/




                     public function afterProcess(
                    MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
                    array $jsLayout
                    )
                    $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
                    ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['lastname']['label'] = __('Recipient lastname');

                    $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
                    ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['region_id']['label'] = __('Division');

                    return $jsLayout;

                    }


                    It's work like charm






                    share|improve this answer















                    Hope it's helpful



                    Way 1 :
                    If you want to change the shipping address fields as well as billing address fields, You can do via theme transaction if you have made a custom theme as per your language.




                    i.e: en_US




                    Way 2:
                    If you change made in shipping address fields only, Please override LayoutProcessor.php



                    Step 1 di.xml




                    path: app/code/vendor/module_name/etc




                    <?xml version="1.0"?>
                    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
                    <type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
                    <plugin name="Custom_Checkout" type="AmeexFasBlockLayoutProcessor" sortOrder="100"/>
                    </type>
                    </config>


                    Step 2:
                    LayoutProcessor.php




                    path:app/code/vendor/module_name/Block/




                     public function afterProcess(
                    MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
                    array $jsLayout
                    )
                    $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
                    ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['lastname']['label'] = __('Recipient lastname');

                    $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']
                    ['children']['shippingAddress']['children']['shipping-address-fieldset']['children']['region_id']['label'] = __('Division');

                    return $jsLayout;

                    }


                    It's work like charm







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited 2 days ago

























                    answered Mar 6 at 15:19









                    ARUNPRABAKARAN MARUNPRABAKARAN M

                    536114




                    536114























                        0














                        According to this topic How do you edit checkout field labels in Magento 2? (sorry, wouldn't let me post as comment)




                        Translation for State/Province and Zip/Postal Code is found (by
                        default) in /vendor/magento/module-checkout/i18n directory.



                        You can copy locale's csv file from
                        /vendor/magento/module-checkout/i18n folder to
                        app/code/Magento/module-checkout/i18n directory.



                        Then find the text and change its translation.



                        After saving file, don't forget to remove content from /var/cache
                        folder and /var/page_cache folder.







                        share|improve this answer



























                          0














                          According to this topic How do you edit checkout field labels in Magento 2? (sorry, wouldn't let me post as comment)




                          Translation for State/Province and Zip/Postal Code is found (by
                          default) in /vendor/magento/module-checkout/i18n directory.



                          You can copy locale's csv file from
                          /vendor/magento/module-checkout/i18n folder to
                          app/code/Magento/module-checkout/i18n directory.



                          Then find the text and change its translation.



                          After saving file, don't forget to remove content from /var/cache
                          folder and /var/page_cache folder.







                          share|improve this answer

























                            0












                            0








                            0







                            According to this topic How do you edit checkout field labels in Magento 2? (sorry, wouldn't let me post as comment)




                            Translation for State/Province and Zip/Postal Code is found (by
                            default) in /vendor/magento/module-checkout/i18n directory.



                            You can copy locale's csv file from
                            /vendor/magento/module-checkout/i18n folder to
                            app/code/Magento/module-checkout/i18n directory.



                            Then find the text and change its translation.



                            After saving file, don't forget to remove content from /var/cache
                            folder and /var/page_cache folder.







                            share|improve this answer













                            According to this topic How do you edit checkout field labels in Magento 2? (sorry, wouldn't let me post as comment)




                            Translation for State/Province and Zip/Postal Code is found (by
                            default) in /vendor/magento/module-checkout/i18n directory.



                            You can copy locale's csv file from
                            /vendor/magento/module-checkout/i18n folder to
                            app/code/Magento/module-checkout/i18n directory.



                            Then find the text and change its translation.



                            After saving file, don't forget to remove content from /var/cache
                            folder and /var/page_cache folder.








                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jun 26 '17 at 8:31









                            codestrcodestr

                            188117




                            188117





















                                0














                                You can overwrite below function for changing the Label at cart page in the file: vendor/magento/module-checkout/Block/Cart/LayoutProcessor.php



                                public function process($jsLayout)

                                $elements = [
                                'city' => [
                                'visible' => $this->isCityActive(),
                                'formElement' => 'input',
                                'label' => __('City'),
                                'value' => null
                                ],
                                'country_id' => [
                                'visible' => true,
                                'formElement' => 'select',
                                'label' => __('Country'),
                                'options' => [],
                                'value' => null
                                ],
                                'region_id' => [
                                'visible' => true,
                                'formElement' => 'select',
                                'label' => __('State/Province'),
                                'options' => [],
                                'value' => null
                                ],
                                'postcode' => [
                                'visible' => true,
                                'formElement' => 'input',
                                'label' => __('Zip/Postal Code'),
                                'value' => null
                                ]
                                ];

                                if (!isset($jsLayout['components']['checkoutProvider']['dictionaries']))
                                $jsLayout['components']['checkoutProvider']['dictionaries'] = [
                                'country_id' => $this->countryCollection->loadByStore()->toOptionArray(),
                                'region_id' => $this->regionCollection->addAllowedCountriesFilter()->toOptionArray(),
                                ];


                                if (isset($jsLayout['components']['block-summary']['children']['block-shipping']['children']
                                ['address-fieldsets']['children'])
                                )
                                $fieldSetPointer = &$jsLayout['components']['block-summary']['children']['block-shipping']
                                ['children']['address-fieldsets']['children'];
                                $fieldSetPointer = $this->merger->merge($elements, 'checkoutProvider', 'shippingAddress', $fieldSetPointer);
                                $fieldSetPointer['region_id']['config']['skipValidation'] = true;

                                return $jsLayout;






                                share|improve this answer



























                                  0














                                  You can overwrite below function for changing the Label at cart page in the file: vendor/magento/module-checkout/Block/Cart/LayoutProcessor.php



                                  public function process($jsLayout)

                                  $elements = [
                                  'city' => [
                                  'visible' => $this->isCityActive(),
                                  'formElement' => 'input',
                                  'label' => __('City'),
                                  'value' => null
                                  ],
                                  'country_id' => [
                                  'visible' => true,
                                  'formElement' => 'select',
                                  'label' => __('Country'),
                                  'options' => [],
                                  'value' => null
                                  ],
                                  'region_id' => [
                                  'visible' => true,
                                  'formElement' => 'select',
                                  'label' => __('State/Province'),
                                  'options' => [],
                                  'value' => null
                                  ],
                                  'postcode' => [
                                  'visible' => true,
                                  'formElement' => 'input',
                                  'label' => __('Zip/Postal Code'),
                                  'value' => null
                                  ]
                                  ];

                                  if (!isset($jsLayout['components']['checkoutProvider']['dictionaries']))
                                  $jsLayout['components']['checkoutProvider']['dictionaries'] = [
                                  'country_id' => $this->countryCollection->loadByStore()->toOptionArray(),
                                  'region_id' => $this->regionCollection->addAllowedCountriesFilter()->toOptionArray(),
                                  ];


                                  if (isset($jsLayout['components']['block-summary']['children']['block-shipping']['children']
                                  ['address-fieldsets']['children'])
                                  )
                                  $fieldSetPointer = &$jsLayout['components']['block-summary']['children']['block-shipping']
                                  ['children']['address-fieldsets']['children'];
                                  $fieldSetPointer = $this->merger->merge($elements, 'checkoutProvider', 'shippingAddress', $fieldSetPointer);
                                  $fieldSetPointer['region_id']['config']['skipValidation'] = true;

                                  return $jsLayout;






                                  share|improve this answer

























                                    0












                                    0








                                    0







                                    You can overwrite below function for changing the Label at cart page in the file: vendor/magento/module-checkout/Block/Cart/LayoutProcessor.php



                                    public function process($jsLayout)

                                    $elements = [
                                    'city' => [
                                    'visible' => $this->isCityActive(),
                                    'formElement' => 'input',
                                    'label' => __('City'),
                                    'value' => null
                                    ],
                                    'country_id' => [
                                    'visible' => true,
                                    'formElement' => 'select',
                                    'label' => __('Country'),
                                    'options' => [],
                                    'value' => null
                                    ],
                                    'region_id' => [
                                    'visible' => true,
                                    'formElement' => 'select',
                                    'label' => __('State/Province'),
                                    'options' => [],
                                    'value' => null
                                    ],
                                    'postcode' => [
                                    'visible' => true,
                                    'formElement' => 'input',
                                    'label' => __('Zip/Postal Code'),
                                    'value' => null
                                    ]
                                    ];

                                    if (!isset($jsLayout['components']['checkoutProvider']['dictionaries']))
                                    $jsLayout['components']['checkoutProvider']['dictionaries'] = [
                                    'country_id' => $this->countryCollection->loadByStore()->toOptionArray(),
                                    'region_id' => $this->regionCollection->addAllowedCountriesFilter()->toOptionArray(),
                                    ];


                                    if (isset($jsLayout['components']['block-summary']['children']['block-shipping']['children']
                                    ['address-fieldsets']['children'])
                                    )
                                    $fieldSetPointer = &$jsLayout['components']['block-summary']['children']['block-shipping']
                                    ['children']['address-fieldsets']['children'];
                                    $fieldSetPointer = $this->merger->merge($elements, 'checkoutProvider', 'shippingAddress', $fieldSetPointer);
                                    $fieldSetPointer['region_id']['config']['skipValidation'] = true;

                                    return $jsLayout;






                                    share|improve this answer













                                    You can overwrite below function for changing the Label at cart page in the file: vendor/magento/module-checkout/Block/Cart/LayoutProcessor.php



                                    public function process($jsLayout)

                                    $elements = [
                                    'city' => [
                                    'visible' => $this->isCityActive(),
                                    'formElement' => 'input',
                                    'label' => __('City'),
                                    'value' => null
                                    ],
                                    'country_id' => [
                                    'visible' => true,
                                    'formElement' => 'select',
                                    'label' => __('Country'),
                                    'options' => [],
                                    'value' => null
                                    ],
                                    'region_id' => [
                                    'visible' => true,
                                    'formElement' => 'select',
                                    'label' => __('State/Province'),
                                    'options' => [],
                                    'value' => null
                                    ],
                                    'postcode' => [
                                    'visible' => true,
                                    'formElement' => 'input',
                                    'label' => __('Zip/Postal Code'),
                                    'value' => null
                                    ]
                                    ];

                                    if (!isset($jsLayout['components']['checkoutProvider']['dictionaries']))
                                    $jsLayout['components']['checkoutProvider']['dictionaries'] = [
                                    'country_id' => $this->countryCollection->loadByStore()->toOptionArray(),
                                    'region_id' => $this->regionCollection->addAllowedCountriesFilter()->toOptionArray(),
                                    ];


                                    if (isset($jsLayout['components']['block-summary']['children']['block-shipping']['children']
                                    ['address-fieldsets']['children'])
                                    )
                                    $fieldSetPointer = &$jsLayout['components']['block-summary']['children']['block-shipping']
                                    ['children']['address-fieldsets']['children'];
                                    $fieldSetPointer = $this->merger->merge($elements, 'checkoutProvider', 'shippingAddress', $fieldSetPointer);
                                    $fieldSetPointer['region_id']['config']['skipValidation'] = true;

                                    return $jsLayout;







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Dec 9 '18 at 6:06









                                    surbhi agrsurbhi agr

                                    40611




                                    40611



























                                        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%2f180680%2fhow-to-change-checkout-page-field-label-in-2-1-7%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

                                        Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                                        Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                                        Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form