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 create marketing pages for your website?

Scenario

You want to create a dynamic page which displays discounted collections. When you click on a collection, it redirects you to the product collection.

Example

Steps

StoreHippo lets you add dynamic data to the pages. You can create dynamic templates using theme widgets. Follow the below steps to create a dynamic page with discounted collections.

Adding Banners

  1. Go to Site > Banners section in the StoreHippo Admin Panel.
  2. Click on Add New to add a new banner.
  3. Provide the Name of the banner as "custom-banner1".
  4. Upload the Banner image and provide the URL of the collection to which you want to redirect the banner.
  5. Enter the display Title as "NEW IN DRESSES".
  6. Click on Save to save the banner.
  7. In the same way, add the second banner as "custom-banner2".
  8. Similarly, the third banner as "custom-banner3" is shown below.
  9. Now, go to Site >  Pages section in the StoreHippo Admin Panel.
  10. Click on Add new to create a dynamic page.
  11. Enter the Title as "Grab your discounts NOW..!!" and Alias as "discount-offers".
  12. In the content field, switch to the code editor tab and paste the following code.
    <div class="col-xs-12 col-sm-4">
      <div ms-widget="ms.banner" ms-data-name="custom-banner1">
      <!--If this widget doesn't produce any output, then change the value of"ms-data-name" to any banner name fron your store.-->
        <div><a ng-href="{{banner.url}}"/><img ng-src="{{banner.image|image:'320x320'}}"/></div>
          <h3>{{banner.title}}</h3>
          <p>{{banner.subtitle}}</p>
        </div>
    </div>
    <div class="col-xs-12 col-sm-4">
        <div ms-widget="ms.banner" ms-data-name="custom-banner2">
        <!--If this widget doesn't produce any output, then change the value of"ms-data-name" to any banner name fron your store.-->
          <div><a ng-href="{{banner.url}}"/><img ng-src="{{banner.image|image:'320x320'}}"/></div>
          <h3>{{banner.title}}</h3>
          <p>{{banner.subtitle}}</p>
        </div>
    </div>
    <div class="col-xs-12 col-sm-4">
        <div ms-widget="ms.banner" ms-data-name="custom-banner3">
        <!--If this widget doesn't produce any output, then change the value of"ms-data-name" to any banner name fron your store.-->
          <div><a ng-href="{{banner.url}}"/><img ng-src="{{banner.image|image:'320x320'}}" /></div>
          <h3>{{banner.title}}</h3>
          <p>{{banner.subtitle}}</p>
        </div>
    </div>

  13. Click on Save to save the dynamic page.

2020-12-03T13:35:52.150Z