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

Understanding Themes

Themes are rendered in the user devices and interact with the Store backend on StoreHippo platform through REST APIs. StoreHippo follows a fresh new approach to theme development by using AngularJS as the templating engine. The new mobile-first approach shifts the control from the server to user devices and that gives a great deal of flexibility to theme developers. 

Theme Components

  • Layouts
  • Pages
  • Widgets
  • Assets
  • Variables

Layouts

Theme layout is the top-level layout that acts a container for different pages of the theme. The layout contains the elements e.g. header, footer, navigation etc. that is common to multiple or all pages of the theme. StoreHippo allows hierarchical layouts.

Pages

Theme pages control layouts for specific parts of the theme e.g. product, category or blog pages. Each page has a unique URL schema.

Widgets

Widgets are reusable blocks of HTML code that can be referred in theme pages and layouts. 

Assets

Assets are resource files that are referenced in the theme. Resources include Javascript, CSS, Images and Font files.

Variables

The theme has configuration variables that can change the look as well as the functionality of the entire theme without needing to edit the code. 

Templating Language

StoreHippo uses AngularJS as the templating engine.

Global Widgets

The functionality is enabled through widgets. StoreHippo offers a number of global widgets which exposes objects, variables, and functions to be used in themes. For example, ms.product widget exposes product object.

<div ms-widget="ms.product">
    {{product.name}}
</div>
StoreHippo uses "ms." (represents MyStore) asnamespacefor various components including widgets, entities, global objects etc.  
Namespacing helps in avoiding conflict between global components and custom components created by theme developers.

Global Objects

Apart from objects provided by widgets, there are few global objects that are available throughout the theme. For example, ms.cart, ms.user

<div ms-widget="ms.product">
    {{product.name}} 
    <a ng-href="ms.cart.add(product)"> Buy Now</a>
</div>

Filters

Filters are used to transform data. For example currency filter formats a number to a currency format, image filter transforms image path to a full URL. 

<div ms-widget="ms.product">
    {{product.name}} - {{product.price|currency}}
    <a ng-href="ms.cart.add(product)"> Buy Now</a>
</div>
2019-10-15T11:52:43.177Z