Posted on 07/06/2018 12:05:33
Hi Marieke,
I'm not sure I understand exactly what you are asking for.
If you remove the meta elements and related template tags from your template then they are not visible to anyone (users, search engines, etc.).
I don't think you can serve one version with meta tags to search engines and another version without the meta tags to regular users. You can try, but search engines will most likely notice it and see it as an attempt at fooling them, which might have negative consequences for the site.
If you want to prevent Dynamicweb from inserting meta tags automatically you can add a data-settings attribute with "disableparsing:true" to the head element in your template:
<!DOCTYPE html>
<html>
<head data-settings="disableparsing:true">
<meta charset="utf-8" />
<title>Dynamicweb</title>
</head>
<body>
...
</body>
</html>