Vinay Patial
Vinay Patial

Reputation: 133

Where to find the viewport meta tag on Magento?

Actually I need to make an magento site non-responsive, I'm trying to find the viewport meta tag in head file but it's not there. Please let me know where can I find this?

Upvotes: 1

Views: 5557

Answers (2)

Gohil Rajesh
Gohil Rajesh

Reputation: 111

Override or create file in theme and add below code in your theme

/vendor/magento/module-theme/view/frontend/layout/default_head_blocks.xml

to

/app/design/frontend/Your/Theme/Magento_Theme/layout/default_head_blocks.xml

and add your viewport tag in section

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../vendor/magento/framework/Module/etc/module.xsd">
  <head>
    <!-- your meta viewport -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=1, user-scalable=no" />
  </head>
</page>

this will update your default magento tag

Upvotes: 0

Alex Ivanov
Alex Ivanov

Reputation: 436

Please check this file. \app\design\frontend\base\default\template\page\html\head.phtml

But if you are using the custom theme, you must find out that file in your theme. So like this :

\app\design\frontend\default[Your theme]\template\page\html\head.phtml

Upvotes: 4

Related Questions