How to Remove

headlayoutlocalmeta-tags

How can i remove
<meta name="keywords" content="keyword"/>
from head through layout.xml?

Best Answer

This is not possible via layout.xml, you have to copy the template file page/html/head.phtml to your theme and remove the following line:

<meta name="keywords" content="<?php echo htmlspecialchars($this->getKeywords()) ?>" />
Related Topic