RM 1.2 Meta Title and Description

indicator

Member
Hi there,
I have changes the Index Page Route to resources, my home page URL is resources too, Now Meta title and description is not showing on google even when I enter full url on google search.
Is it possible that resources can take the meta title and meta description which is entered in option section?

Thanks in advance,
Cheers!
 
These won't be used out of the box on that page. You can change these to fit your needs via the resource_index template though. You can change the title there. If you want the meta description, you can add:
Code:
<xen:if is="{$xenOptions.boardDescription}"><xen:container var="$head.description">
   <meta name="description" content="{$xenOptions.boardDescription}" /></xen:container></xen:if>
 
Top Bottom