سؤال

Using magento 2.2, I want to remove link from phone number in address book. Not allow user click on number.

enter image description here

هل كانت مفيدة؟

المحلول

You can change it easily from backend

Admin > STORES > Configuration > CUSTOMERS > Customer configuration > Address Templates > HTML

Replace HTML field content line with below

{{depend telephone}}T: <a href="tel:{{var telephone}}">{{var telephone}}</a>{{/depend}}

to

{{depend telephone}}T: <span>{{var telephone}}</span>{{/depend}}

save and flush cache you will see your desired result in admin order view page.

For Frontend Shipping address section you need to rewrite below template in your theme

vendor/magento/module-checkout/view/frontend/web/template/shipping-address/address-renderer/default.html

Add above default.html file to below location

app/design/frontend/VendoreName/ThemeName/Magento_Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى magento.stackexchange
scroll top