I need to remove html tags from below Shipping information
It is coming from
/var/www/html/dg/vendor/magento/module-shipping/view/adminhtml/templates/view/form.phtml
file. My question is for this do I need to override entire form.phtml file & display content from there?
Is there any other way to override phtml file for making small changes?
The only thing I added in the file is strip_tags
<div class="shipping-description-title"> <?= $ block->escapeHtml(strip_tags($ order->getShippingDescription())); ?> </div>
But I had to put entire phtml file contain