Как добавить всплывающую подсказку на кассе magento 2, в поле адреса улицы? - PullRequest
0 голосов
/ 17 апреля 2019

Я хочу добавить всплывающую подсказку в поле адреса улицы, на странице оформления заказа magento 2. Я попытался добавить его в: vendor \ magento \ module-checkout \ view \ frontend \ layout \ checkout_index_index.xml

<item name="street" xsi:type="array"> 
   <item name="config" xsi:type="array"> 
      <item name="tooltip" xsi:type="array"> 
        <item name="description" xsi:type="string" translate="true">For delivery address verification.</item> 
      </item> 
   </item> 
</item>

1 Ответ

0 голосов
/ 17 апреля 2019

Вы можете создать after plugin, чтобы добавить всплывающую подсказку к полям улиц, вам необходимо ввести оформление заказа LayoutProcessor

Class LayoutProcessor
{
 /**
  * @param \Magento\Checkout\Block\Checkout\LayoutProcessor $subject
  * @param array $jsLayout
  * @return array
 */
 public function afterProcess(
    \Magento\Checkout\Block\Checkout\LayoutProcessor $subject,
    array  $jsLayout
  ) {
    $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']
        ['shippingAddress']['children']['shipping-address-fieldset']['children']['street']['children'][0]['tooltip']['description'] = "ToolTip 1";
    $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']
        ['shippingAddress']['children']['shipping-address-fieldset']['children']['street']['children'][1]['tooltip']['description'] = "ToolTip 2";

    return $jsLayout;
 }
} 

enter image description here

enter image description here

Пожалуйста, обратитесь это POST

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...