Question about SEO, Description and Metatags

radicalproxy

New Member
I have a question about adding description, I installed the "SEO" plugin but when adding a description it appears at the top of the page, is there any way to add metatags description without this text appearing at the top of the page?

And another question is how could I add the "op image" attribute to add an image as a preview when sharing the site link and the link to ask for votes?

text.jpg
 

Basti

Administrator
Staff member
to add metatags description without this text appearing at the top of the page
Edit the SEO plugin
1) inside create folder "child"
2) copy main_welcome.html into the child folder
3) edit the copied file and remove it content ( so its an empty file named main_welcome.html )

And another question is how could I add the "op image" attribute to add an image as a preview when sharing the site link and the link to ask for votes?
Not really sure what you mean with this
 

Mark

Administrator
Staff member
And another question is how could I add the "op image" attribute to add an image as a preview when sharing the site link and the link to ask for votes?

View attachment 1377
I believe you mean the OG image

You can add these to your child/wrapper.html template:

<meta property="og:image" content="https://yourdomain.com/image.jpg"/>
<meta property="og:title" content="Your Title"/>
<meta property="og:description" content="Your description."/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="630"/>
 
Top