Helpcenter +918010117117 https://cdn.storehippo.com/s/573db3149f0d58741f0cc63b/ms.settings/5256837ccc4abf1d39000001/57614ef64256dc6851749879-480x480.png" [email protected] https://www.facebook.com/StoreHippohttps://twitter.com/StoreHippohttps://www.linkedin.com/company/hippoinnovations/https://plus.google.com/+Storehippo/posts
B4,309-10 Spaze iTech Park, Sector 49, Sohna Road, 122001 Gurgaon India

ms.page

It contains the details particularly the SEO related tags of the current page. 

title

Title for the home page comes from the Settings > SEO section. If no title is specified then store name is used for title. For other pages, SEO.title is checked first and if not present defaults to the name/title field of the record.

meta_tagsMeta tags for the home page comes from the meta tags in Settings > SEO section. For home page, the meta description defaults to the store description. For other pages like product, category, brand, collection and static page, the SEO fields are used for the value of meta tags.
og_tagsOg tags for the home page comes from the og tags in Settings > SEO section. For home page, the og description defaults to the store description. For other pages like product, category, brand, collection and static page, the SEO fields are used for the value of meta tags.


Variables

ValueDescription
nameThis variable gives the name of current page.
titleThis variable gives the title of the current page.
meta_tagsContains the list of meta tags (description, keywords etc.) for the current page.
og_tagsContains the list of og tags (og:title, og:description, og:image) for the current page.

Examples

Populating SEO tags in global layout


<title ng-bind="ms.page.title"></title>

<meta ng-repeat="meta in ms.page.meta_tags" name="{{meta.name}}" content="{{meta.content}}">

<meta ng-repeat="og in ms.page.og_tags" property="{{og.property}}" value="{{og.content}}">