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
call to replace anchor tags contains '/admin' in href

How to have different static content for different substores

If you have configured multiple substores, you might want to have different content for different substores. For example, you want to have different privacy policies. Following are the steps that you can perform to achieve that.

1. Go to Site > Pages section in StoreHippo Admin Panel to manage pages.

2. Open the page that you want to edit

4. Go to the Code Editor tab in Content field

In Code Editor you can define the following conditions for substores. Code Editor allows you to write code the same way you edit your themes. For detailed reference on global objects that you can use in the code, please refer the global objects documentation.

<div ng-if="ms.substore.alias == 'china'">
 Privacy Policy for China
</div>

<div ng-if="ms.substore.alias == 'india'">
 Privacy Policy for India
</div>

Similarly, you can have content specific to substores (ms.substore), user location (ms.geolocation) or user group (ms.user) etc.

2021-01-06T12:44:29.403Z