Faq (Frequently Asked Questions)
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
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.
Create an account on Algolia.
After Signup you are get the 14 days trial and also you can update the plans. Reference Link : https://www.algolia.com/pricing
Create a Index on Algolia Dashboard. Reference Link :- https://www.algolia.com/doc/guides/indexing/indexing-overview/#indexing-via-the-dashboard
Add your products fields with values under the Index.
Use the Algolia api key on your app and get the result. Go to the src -> constants -> Appconfig.js
export default {
algoliaApiKey: '6be0576ff61c053d5f9a3225e2a90f76'
}
2. How to add more Currency in embryo?
Go to the src -> store -> Settings -> data.js
export const currencies = [
{
id:0,
img: '/static/images/united-states.png',
title:'USD',
symbol:
Go to the src -> store -> sidebar -> data.js
Add new object in file
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
}
}