How to move up "title" in metatags

Hello, After I add mettags the <title></title>is shown at the very bottom of metatags. There is a way to display it after the view port metaname? <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> Thank you so much

Welcome to the forums! Unfortunately as of now you can't move it manually. But you're right that it should be after the viewport meta tag. We'll fix this in the next release.

Great! do you inow ehen eill be released the upgrade? For now the only I can do is to edit the metatags after the pages has been generated. Thank you for your update.

i'm confused, actually it's already included AFTER the viewport

<!DOCTYPE html>
<html lang="it">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Donec ac accumsan lacus, sed posuere dolor. Proin egestas, ligula eget">
    <title>Lorem Ipsum dolor</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/4.1.2/united/bootstrap.min.css">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu:400,700">
    <link rel="stylesheet" href="/assets/css/styles.min.css?h=b9c9ae3774f869d03467076ab968fc56">

</head>

the standard bootstrap 4 template here: https://getbootstrap.com/docs/4.1/getting-started/introduction/ has the <title> tag as the latest header item before </head> so please let's follow the standard bootstrap 4.1 conventions

Marro, thank you for your answer.

When you work on a website you don’t keep the settings by default, you also add new “metatags” (don’t you?)

Ok, at the moment, when you set the new “metatags”, those are added on TOP the <title></title> tag,

<meta name=“Autor” content=“Miguel Franco”>
<meta name=“keyboards” content=“text1, text2, text3”>
<meta name=“Description” content=“This is the content of the web tank”>
<meta name=“Title” content=“think tank”>

The <title> stay BELOW and THAT is what I do not want. I wish I could add the new metatags BELOW the <title></title> :

<meta name=“Title” content=“think tank”>
<meta name=“Description” content=“This is the content of the web tank”>
<meta name=“keyboards” content=“text1, text2, text3”>
<meta name=“Autor” content=“Miguel Franco”>

But I know that will be fixed in the new release of Bootstrap Studio.

Thank you for your answer.