Add HTML meta tag to Head of Anonymous Home Page

0
I would like to add a meta description tag to the Head HTML element of the anonymous home page for an app.  Any pointers about how to accomplish this?
asked
3 answers
3

HI Mike,

One way to do this is to use the html snippet and add the tag using javascript. 

  var m = document.createElement('meta'); 
  m.name = 'description'; 
  m.content = 'Add your info here'; 
  document.head.appendChild(m);

 

answered
1

Mike,

 

You should check out this module. It’s very useful when setting up SEO pages. 

https://appstore.home.mendix.com/link/app/105999/

Regards

Simon

answered
0

How do I add a meta tag to the head section of My Domain home page?

Add a meta tags generator to the <head> section of your domain home page.
...
Confirm domain ownership

  1. Navigate to the DNS record section of your domain host.
  2. Add the TXT entry to your DNS record.
  3. Add @ to the Host field (if it is required by your domain host).
answered