Magento – Magento 2 : Getting rid of meta description tag on product pages

magento2meta-tagsproduct

I am using editor for product description and there are HTML tags in them. Magento uses product description in product page meta tag description. My designs are going weird.

Here is the meta tag description.

<meta name="description" content="<p><strong>ABDE product</strong></p>
<p>Also available in <a href="domainname/index.php?route=product/product&amp;path=63_81&amp;product_id=188#.VkoVJuL642g"><span style="text-decoration: underline;"><strong>Black</st"/>
<meta name="keywords" content="Magento, Varien, E-commerce"/>

Ref Image : Click here

How to fix this issue. Any issue would be appreciated.

Best Answer

Add strip_tag function to eliminate HTML tags from meta description.

File location :

/vendor/magento/module-catalog/Block/Product/View.php

Search for the function _prepareLayout

Update the line

  $description = $product->getMetaDescription();

With

  $description = strip_tags($product->getMetaDescription());

For more details refer :http://connectonline.in/magento2-strip-tags-magento-meta-tags/