Faq (Frequently Asked Questions)

  1. Getting started with Algolia Registration and process.

Algolia is a hosted full-text, numerical, and faceted search engine capable of delivering real-time results from the first keystroke.

  1. Create an account on Algolia.

  2. After Signup you are get the 14 days trial and also you can update the plans. Reference Link : https://www.algolia.com/pricing

  3. Add your products fields with values under the Index.

  4. Use the Algolia api key on your app and get the result. Go to the src -> constants -> Appconfig.js

Appconfig.js
export default {
	algoliaApiKey: '6be0576ff61c053d5f9a3225e2a90f76'
}

2. How to add more Currency in embryo?

Go to the src -> store -> Settings -> data.js

data.js
export const currencies = [
   {
      id:0,
      img: '/static/images/united-states.png',
      title:'USD',
      symbol:"$"
   },
   {
      id:1,
      img:'/static/images/india.png',
      title:"INR",
      symbol:" ₹"
   }
}

4. How to add new menu in header and responsive sidebar follow these steps:-

  1. Go to the src -> store -> sidebar -> data.js

  2. Add new object in file

data.js
export const menus = [
	{
      path: '/',
      name: "message.home",
      icon: "home",
      children: null
   },
   {
      path: '/fashion',
      name:"message.fashion",
      icon: 'accessibility_new',
      children: null
   },
   {
      path: '/gadget',
      name:"message.gadgets",
      icon: 'devices',
      children: null
   },
   {
      path: '/accesory',
      name:"message.accessories",
      icon: 'party_mode',
      children: null
   }
}

Last updated