-1

I need to update mata title, description and keyword for each page.But in bolt dashboard there is no option for that.

Screenshot

enter image description here

Navarasu
  • 8,209
  • 2
  • 21
  • 32

2 Answers2

0

There is an extesnion for SEO that allows you to edit the meta tags, the title and the index rules: https://market.bolt.cm/view/bobdenotter/seo

The SEO extension also lets you edit OG tags.

jadwigo
  • 339
  • 1
  • 9
  • I tried it but it didnt even install properly. Is there a way to just enter it in the twig files directly and forget about the extension. Thanks – Medical Doctor - Programmer Dec 06 '18 at 20:18
  • After you install the extension, you also need to add a SEO field to the contenttypes where you want to use the SEO extension, and the twig tags to your page templates. ( see https://bobdenotter.github.io/seo/ for the documentation ) – jadwigo Dec 10 '18 at 16:28
0

You need to add that fields in configuration and templates. Edit your content types for each item type, then use that field into your template.

Example:

Code in your contenttypes file:

page:
    name: Page 
    singular_name: Page Item 
    fields:
        title:
            type: text
            class: large
        slug:
            type: slug
            uses: title

Template sample:

<head>
    <meta charset="utf-8" />
    <title>{{ page.title }}</title>
</head>

More info in their documentation about contenttypes: https://docs.bolt.cm/3.6/contenttypes/intro

n1kkou
  • 3,096
  • 2
  • 21
  • 32