How to fix this?
in SEO
`[user-scalable="no"]` viene usato nell'elemento `<meta name="viewport">` o l'attributo `[maximum-scale]` è inferiore a 5.
------------------
`[user-scalable =" no "]` is used in the `<meta name =" viewport ">` element or the `[maximum-scale]` attribute is less than 5.
Comments
Hi,
Sorry, but I do not understand. Can you explain your issue greater, please?
Moreover, please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us with the link.
It is always a good idea to also attach a screenshot showing your issue.
Thanks
an online tool show me this configuration as an error
you can check here
https://suite.seotesteronline.com/
There is no setting to modify it.
You would have to modify the theme files, but we do not provide help with such customization.
Best regards
Hello,
Can I ask which file you need to edit? Where can i find this file?
Thak you
Hi @VillaRegenhart,
The file responsible for that is
wp-content/themes/betheme/functions/theme-head.php
.Best regards
thank you good soul
Solution to this problem:
Find these lines in file theme-head.php and change the value of maxiumum scale to 6 or higher. Reset cache and Its done
if (mfn_opts_get('responsive')) {
if (mfn_opts_get('responsive-zoom')) {
echo '<meta name="viewport" content="width=device-width, initial-scale=1" />'."\n";
} else {
echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=6" />'."\n";
}
}