-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a48e7c7
commit b78b361
Showing
325 changed files
with
2,636 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
/* set version */ | ||
let version = '2.2.0'; | ||
|
||
/* version prefix setter */ | ||
function setVersionPrefix(children) { | ||
if (children.constructor === Array) { | ||
return children.map(child => { | ||
child[0] = `/${version}/${child[0]}`; | ||
return child; | ||
}); | ||
} | ||
return `/${version}/${children}`; | ||
} | ||
|
||
/* module export */ | ||
module.exports = [ | ||
[setVersionPrefix('introduction/introductions'), 'Introduction'], | ||
|
||
{ | ||
title: 'Product Types', | ||
path: setVersionPrefix('products'), | ||
collapsable: true, | ||
children: setVersionPrefix([ | ||
['products/simple', 'Simple Product'], | ||
['products/configurable', 'Configurable Product'], | ||
['products/virtual', 'Virtual Product'], | ||
['products/bundle', 'Bundle Product'], | ||
['products/grouped', 'Grouped Product'], | ||
['products/downloadable', 'Downloadable Product'], | ||
]) | ||
}, | ||
{ | ||
title: 'Category', | ||
path: setVersionPrefix('category'), | ||
collapsable: true, | ||
children: setVersionPrefix([ | ||
['category/overview', 'Category Overview'], | ||
['category/create-category', 'Create Category'], | ||
]) | ||
}, | ||
{ | ||
title: 'Attributes', | ||
path: setVersionPrefix('attribute'), | ||
collapsable: true, | ||
children: setVersionPrefix([ | ||
['attribute/overview', 'Attribute Overview'], | ||
['attribute/product-attribute', 'Create Product Attribute'], | ||
['attribute/attribute-family', 'Attribute Family'], | ||
['attribute/attribute-input', 'Attribute Input Type'], | ||
]) | ||
}, | ||
{ | ||
title: 'Orders', | ||
path: setVersionPrefix('orders'), | ||
collapsable: true, | ||
children: setVersionPrefix([ | ||
['orders/create-order', 'Orders'], | ||
['orders/create-invoice', 'Invoice'], | ||
['orders/create-shipment', 'Shipment'], | ||
['orders/refunds', 'Refunds'], | ||
['orders/reorder', 'Reorder'], | ||
['orders/admin-order', 'Admin Order'], | ||
]) | ||
}, | ||
{ | ||
title: 'Customers', | ||
path: setVersionPrefix('customer'), | ||
collapsable: true, | ||
children: setVersionPrefix([ | ||
['customer/create-customer', 'Customers'], | ||
['customer/customer-groups', 'Groups'], | ||
['customer/customer-reviews', 'Reviews'], | ||
]) | ||
}, | ||
|
||
[setVersionPrefix('cms/cms-page'), 'CMS'], | ||
|
||
{ | ||
title: 'Marketing', | ||
path: setVersionPrefix('marketing'), | ||
collapsable: true, | ||
children: setVersionPrefix([ | ||
['marketing/promotions', 'Promotions'], | ||
['marketing/communications', 'Communications'], | ||
['marketing/searchseo', 'Search & SEO'], | ||
]) | ||
}, | ||
{ | ||
title: 'Settings', | ||
path: setVersionPrefix('settings'), | ||
collapsable: true, | ||
children: setVersionPrefix([ | ||
['settings/locale', 'Locales'], | ||
['settings/currencies', 'Currencies'], | ||
['settings/exchange-rates', 'Exchange Rates'], | ||
['settings/inventory-source', 'Inventory Source'], | ||
['settings/channels', 'Channels'], | ||
['settings/users', 'Users'], | ||
['settings/roles', 'Roles'], | ||
['settings/themes', 'Themes'], | ||
['settings/taxes', 'Taxes'], | ||
['settings/data-transfer', 'Data Transfer'], | ||
]) | ||
}, | ||
|
||
[setVersionPrefix('configure/configurations'), 'Configure'], | ||
|
||
[setVersionPrefix('magic/magic-ai'), 'Magic AI'], | ||
|
||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Attribute | ||
|
||
An *Attribute* is a specification or characteristic of a product, for example, Color, Size, and Pattern are attributes of a T-Shirt. You can also create many attributes for a single product. Product attributes play a major role in the buying decision of the customer. | ||
Attributes determine the type of input control that is used for product options, and provide additional information for product pages.They are also used as search parameters and criteria for layered navigation, product comparison reports, and promotions. You can create as many **attributes** and **attribute families** as necessary to describe the products in your catalog in Bagisto. | ||
|
||
Attributes can have different input types that determine not only how you enter the values for the attribute, but also how shoppers can select attributes in the case of options, or enter values. | ||
|
||
Product Attributes are a set of characteristics that define a particular product or a group of goods. This means size, color, flavor, package type, etc. constitute attributes. Product attributes are not just about the general description of a product, but it speaks the value of products that makes it unique. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Create Attribute Family | ||
|
||
By using Attribute Families, you can import all the required information about the product in a single step. It can be specified as a list of attributes that are related to a unique product. Here we have listed out the tutorial on product attribute families in Bagisto. | ||
|
||
### Create Attribute Family in Bagisto 2.2.0 | ||
|
||
**Step 1**:- On the Admin Dashboard, click **Catalog** >> **Attribute Families** >> **Create Attribute Family** | ||
|
||
![Attribute Family](../../assets/2.2.0/images/attribute/createFamily.png) | ||
|
||
**Step 1**:- Enter the **Attribute Family Code** and **Name** as shown in the below image. | ||
|
||
![Save Family](../../assets/2.2.0/images/attribute/saveFamily.png) | ||
|
||
So now after creating a family Save Attribute Family and a New Attribute Family have been created as shown in the below image. | ||
|
||
![Family Grid](../../assets/2.2.0/images/attribute/familyGrid.png) | ||
|
||
Now that the new attribute family has been created, you can edit it through the **Action**. Add the desired **Attributes** to this family based on your specific requirements. Afterward, to verify the output during the product creation process, you will be able to see the new Attribute family. Now all Attribute will be visible on the product page that belongs to these Attribute Families. | ||
|
||
![Output](../../assets/2.2.0/images/attribute/output.png) | ||
|
||
By following the above steps, you can easily create an Attribute Families in Bagisto2.2.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Attribute Input Type | ||
|
||
Attributes can have different input types that determine not only how you enter the values for the attribute, but also how shoppers can select attributes in the case of options, or enter values. | ||
|
||
Product Attributes are a set of characteristics that define a particular product or a group of goods. This means size, color, flavor, package type, etc. constitute attributes. Product attributes are not just about the general description of a product, but they speak about the value of products that makes it unique. | ||
|
||
| Property | Description | | ||
|-----------------|------------------------------------------------------------------------------------------------------------------------------------| | ||
| Text | A single-line input field for text. | | ||
| Text Area | A multiple-line input field for entering paragraphs of text, such as a product description. | | ||
| Price | This input type is used to create price fields that are in addition to the predefined attributes: Price, Special Price, Tier Price, and Cost. | | ||
| Boolean | Displays a drop-down list with pre-defined options of Yes and No. | | ||
| Select | Displays an option to select a value. | | ||
| Multi Select | Displays a drop-down list of values that accepts multiple selections. | | ||
| Date | Displays a date value in the preferred format. | ||
| Date Time | Displays a date and time value in the preferred format and time zone. | ||
| Image | This is used to show the image.The image attribute can be excluded from the storefront media browser. | ||
| File | File attributes are a type of meta-data that describe and may modify how files and/or directories in a filesystem behave. | ||
| Checkbox | It represents a state or option that can be toggled. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Attribute Overview | ||
|
||
An *Attribute* is a specification or characteristic of a product, for example, Color, Size, and Pattern are attributes of a T-Shirt. You can also create many attributes for a single product. Product attributes play a major role in the buying decision of the customer. | ||
Attributes determine the type of input control that is used for product options and provide additional information for product pages. They are also used as search parameters and criteria for layered navigation, product comparison reports, and promotions. You can create as many **attributes** and **attribute families** as necessary to describe the products in your catalog in Bagisto. | ||
|
||
Attributes can have different input types that determine not only how you enter the values for the attribute, but also how shoppers can select attributes in the case of options, or enter values. | ||
|
||
Product Attributes are a set of characteristics that define a particular product or a group of goods. This means size, color, flavor, package type, etc. constitute attributes. Product attributes are not just about the general description of a product, but they speak about the value of products that make it unique. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Create Product Attribute | ||
|
||
An Attribute is a specification or characteristic of a product for example Color, Size, and Pattern an attribute of a T-Shirt. You can as create many attributes for a single product. Product Attribute plays a major factor in the buying decision of the Customer. | ||
|
||
### How to Create a Product Attribute in Bagisto2.2.0 | ||
|
||
To Create Bagisto Attributes, open the Admin Panel and then follow the below step | ||
|
||
### Add Attributes | ||
|
||
Click on **Catalog** >> **Attributes** >> **Create Attributes** as shown in the below image. | ||
|
||
![Attribute](../../assets/2.2.0/images/attribute/createAttribute.png) | ||
|
||
### Attribute Types | ||
|
||
Enter **Label**, **Attribute code**, and select **Attribute Type**. | ||
|
||
**Attribute Code**:- Enter the Attribute Code to identify the Attribute | ||
|
||
**Attribute Type**:- There are various attribute types available in Bagisto such as Text, Textarea, Price, Boolean, Select, Multi-select, DateTime, and Date. | ||
|
||
![Attribute Types](../../assets/2.2.0/images/attribute/attributeTypes.png) | ||
|
||
Now add validation & configuration as shown in the below image as per your requirement. | ||
|
||
![Validation](../../assets/2.2.0/images/attribute/validation.png) | ||
|
||
So **Save the Attribute** and then go the the **Attribute Family** from **Catalog >> Attribute Families** and assign it from the unassigned attribute by drag and drop at your desired place as shown in the below image. | ||
|
||
![Attribute Family](../../assets/2.2.0/images/attribute/attributeFamily.png) | ||
|
||
Now, **Save the Attribute Family** and check the output while creating products on the product edit page as shown in the below image. | ||
|
||
![Edit Page](../../assets/2.2.0/images/attribute/editPage.png) | ||
|
||
By following the above steps, you can easily create a Product Attribute in Bagisto 2.2.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Category | ||
|
||
Product categories in e-commerce are broad classifications used to organize and display products for online shoppers. They help customers navigate e-commerce websites more easily. Common product categories include: | ||
|
||
- **Electronics:** Includes gadgets, appliances, and accessories. | ||
- **Clothing and Fashion:** Covers apparel, footwear, and accessories. | ||
- **Home and Living:** Encompasses furniture, decor, and home essentials.C | ||
- **Beauty and Personal Care:** Features cosmetics, skincare, and grooming products. | ||
- **Books and Media:** Includes books, e-books, movies, and music. | ||
- **Sports and Outdoors:** Offers sports equipment, activewear, and outdoor gear. | ||
- **Health and Wellness:** Encompasses vitamins, supplements, and healthcare items. | ||
- **Automotive:** Covers car parts, accessories, and tools. | ||
|
||
These categories make it easier for shoppers to find and explore products of interest efficiently on e-commerce platforms. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# How to Create Categories in The Bagisto2.2.0 | ||
|
||
The category is a structure of your catalog. By creating a category, customers can easily find the specific product amongst the lot on your e-commerce website. It is used for making the hierarchical arrangement of your website. Here we have listed down steps to create a new category and root category in Bagisto. | ||
|
||
### Root Category | ||
|
||
Bagisto comes with a default root category, i.e., Root, but you can also create your root category. The Root Category is not visible on the front end because it acts as a container to contain the categories to be displayed on the website. | ||
|
||
### Steps to Create a New Root Category in Bagisto 2.2.0 | ||
|
||
1. Click on **Catalog >> Categories >> Create Category** as shown in the below image. | ||
|
||
![Create Category](../../assets/2.2.0/images/category/create.png) | ||
|
||
2. Enter the general values like name, position, and description, and add images. | ||
|
||
3. **Display Mode** - Display mode is about which content detail is visible on the category page. There are three options: | ||
- Product and Description | ||
- Product | ||
- Description | ||
|
||
- **Product and Description:** When you set the display mode to "Product and Description," then the product and description about the category both will be visible on the front end as shown below image. | ||
|
||
|
||
|
||
- **Description:** When you set the display mode to "Description," then only the category description will be visible on the front end. | ||
|
||
- **Product:** When you set the display mode to "Product," the product will be visible on the front end. | ||
|
||
![Edit Category](../../assets/2.2.0/images/category/editCategory.png) | ||
|
||
4. Save the category, and a new category is created by the name of Electronic Items as shown in the below image. | ||
|
||
![Category Grid](../../assets/2.2.0/images/category/categoryGrid.png) | ||
|
||
5. Now check the product edit page while creating a product, and you will be able to see our new category right there. | ||
|
||
![Product Page](../../assets/2.2.0/images/category/productPage.png) | ||
|
||
### Category on Front-End | ||
|
||
By following the above steps, you can easily create a new category. | ||
|
||
![Output](../../assets/2.2.0/images/category/output.png) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Category Overview | ||
|
||
The category is a structure of your catalog. By creating a category, customers can easily find the specific product amongst the lot on your e-commerce website. It is used for making the hierarchical arrangement of your website. Here we have listed down steps to create a new category and root category in Bagisto. | ||
|
||
## Root Category | ||
|
||
Bagisto comes with a default root category i.e. Root, but you can also create your root category. Root Category is not visible on the front end because it acts as a container to contain the categories to be displayed on the website. | ||
|
||
## Sub Category | ||
|
||
In e-commerce, a subcategory is a more specific classification or subset within a broader category. It is a way of further organizing and structuring products on an online store to help users navigate and find what they are looking for more easily. Subcategories are nested within larger or parent categories, creating a hierarchical structure. | ||
|
||
For example, if "Electronics" is a main category, you might have subcategories such as "Smartphones," "Laptops," and "Audio Devices" underneath it. Each of these subcategories may then have additional subcategories. This hierarchical organization helps shoppers drill down into specific product types and makes the browsing and shopping experience more intuitive. | ||
|
||
In summary, subcategories in e-commerce provide a way to organize and present products in a structured manner, facilitating smoother navigation for online shoppers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# CMS Page | ||
|
||
With the help of CMS(content management system), you can create a new page, and edit the page for your Bagisto store. CMS is also helpful for the customer while purchasing the product to check the refund and return policy and many more. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# CMS Pages | ||
|
||
With the help of CMS(content management system), you can create a new page, and edit the page for your Bagisto store. CMS is also helpful for the customer while purchasing the product to check the refund and return policy and many more. | ||
|
||
### To create a CMS page from the Admin Panel follow the below steps: | ||
|
||
**Add a New Page** | ||
|
||
**Step 1:** On the Admin Sidebar, click on **CMS >> Page** By default there are already CMS pages located here to create a new CMS page click on the **Create Page** button as shown below. | ||
|
||
![CMS](../../assets/2.2.0/images/cms/createPage.png) | ||
|
||
**Step 2:** Add the page **Title** and add channels under general as shown in below image | ||
|
||
![General](../../assets/2.2.0/images/cms/general.png) | ||
|
||
**Step 3:** Add the **Content** of the CMS page under **Description**. | ||
|
||
![Description](../../assets/2.2.0/images/cms/description.png) | ||
|
||
**Step 4:** Add the below fields under **SEO** | ||
|
||
1. **Meta Description** | ||
Enter the description so that **CMS Page** can easily appear in search engine listings. | ||
|
||
2. **Meta Title** | ||
So Provide the main title of the **CMS Page** by which your page will be known. | ||
|
||
3. **Meta Keyword** | ||
The meta keyword for the page needs to be provided to improve its searchability on the search engine for specific keywords. | ||
|
||
4. **URL Key** The URL key is the part of a static URL that describes the Page, product, or category. | ||
|
||
![SEO](../../assets/2.2.0/images/cms/seo.png) | ||
|
||
So a new CMS page is been created successfully by the name of **New Page** as shown below image. | ||
|
||
![output](../../assets/2.2.0/images/cms/output.png) | ||
|
||
By this, you can easily create CMS pages in Bagisto. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Configure | ||
|
||
Generally, a configuration is the arrangement - or the process of making the arrangement - of the parts that make up a whole. |
Oops, something went wrong.