webnodes e-commerce module

Size: px
Start display at page:

Download "webnodes e-commerce module"

Transcription

1 webnodes e-commerce module

2 Background & overview E-commerce is one of the most important activities on the internet today. In the US alone, analysts predict that e-commerce sales will reach $248 billion in This means that a large percentage of all websites need e-commerce functionality, either as the main online activity, or as one of many online activities. Another factor that makes e-commerce attractive is the long tail principle that ensures that sites that serve a very narrow niche can survive and thrive, since the market is much bigger than traditional market for bricks and mortar shops. It s based on the theory of selling small volumes of hard-to-find items to many customers instead of only selling large volumes of a reduced number of popular items. The green portion of the graph shows the traditional and most popular products. The yellow part shows the less popular products, but the combined sales of the two parts are relatively similar. The e-commerce module in Webnodes CMS is a fully featured e-commerce application platform. It s based on the Webnodes Adaptive Framework, WAF, just like the rest of the CMS. This gives you as a shop owner a superb tool to build a solution that matches your exact needs. One of the core design goals behind the e-commerce module and Webnodes CMS in general is scalability. The module is designed to work for both small web shops and large e-commerce sites. This also makes it possible to make the solution grow with your needs. Page 2

3 Architecture The architecture of the Webnodes e-commerce module differs from most traditional e-commerce module architectures. A Webnodes e-commerce site is designed to be tailored to suit each client s needs. By that we mean that the customizations are not a separate, badly integrated piece of code, but a fully integrated part of the site. Traditional e-commerce and cms Webnodes e-commerce and cms For low cost projects, the out-of-the-box functionality can be used. If the site is successful and our e- commerce module can grow with your site, avoiding a costly and time-consuming platform change when the site takes off. This makes it a very affordable solution in the long run. Page 3

4 Functionality The list of functionality below is far from complete. It highlights some of the main features, but there are too many features in the e-commerce module to describe them all in this document. Contact us if you have a specific feature you need. Full access to all Webnodes Adaptive Framework functionality In the architecture diagram above you can see that the e-commerce module is built-on top of the Webnodes Adaptive Framework. This means that all the features in the framework can be used in the e-commerce module. For example publication workflow and revisions can be enabled for the products, enabling you to work on changes to a product in a preliminary revision. For more information about the core framework functionality, check out No restrictions on design The content and the presentation are completely separated, removing all limitations on the design of your web shop. Scalable The e-commerce module and the rest of the platform has been designed to be scalable, not just in terms of performance, but also in the sense that the functionality can be expanded as your needs grow. This is mainly based on two main things. The provider based architecture and the fact that it s using the Webnodes Adaptive Framework. Provider model The e-commerce module uses a provider model design pattern for much of the functionality. This means that the default functionality can easily be replaced by alternate implementations with different functionality. This is used for things like payment methods, shipping and tax calculations and much more. See more detailed information on some of these areas later in this document. Multiple languages The e-commerce module can utilize the advanced support for multiple languages in the Webnodes Adaptive Framework. Multiple currencies Multiple currencies are supported in the module. Multiple currencies are related to a shop. One of them is marked as the default currency. The other currencies are supported by either calculating the other prices dynamically based on an exchange rate, or a fixed price can be set in each of the supported currencies. For example, a product can be set to cost $99, but also 99, irrespective of the exchange rate. Extensible document types The e-commerce module has a range of content types created for the shop. Since these content types are using the ontology and content definitions engine in the Webnodes Adaptive Framework, the shop can be extended in a number of directions using the inheritance functions. For example, one of the built-in document types is ProductBase. This is a document type for a basic product. We Page 4

5 could easily create an AdvancedProduct document type that inherits from ProductBase, that has more properties for more advanced functionality (weight, dimensions, reviews etc) and cooler presentation (video, more product images etc). Another important and unique part of this technology is the content relations technology. It enables content to be related in any way you wish. The e-commerce module has a range of built in content types, which have a set of predefined relations. For example between product and product category content types there is a relation. To customize the shop to your needs, you can extend the built-in content types. Discounts A wide range of discount methods are available. Discounts can apply to products, a combination of products ordered together, orders or shipping on orders. Discounts can be limited by a certain number, or be available for a certain time period. Discounts can be a fixed amount, or a fixed percentage. Discounts can be related to a customer, a product, a shop, a product category, manufacturer or order. Reports In order to get a clear picture on how a shop is performing, reporting is crucial. There is a wide range of reports available, ranging from stock levels to a list of the best selling products in the last 30 days. Variants The system has a built in support for variants. All variants are themselves full-blown products, which makes it easier to handle integrations with other systems. Page 5

6 Anonymous or login based On a shop by shop basis, you can decide if it should be possible to submit an order without logging in. Tagging, taxonomy, semantic networks All content in the system can use the tagging, taxonomy and semantic network technology in WAF. Dashboard The dashboard shows an overview of the status of the current shop. It contains different boxes containing key information, ranging from the latest orders to the most popular products to graphs showing the revenue for certain time periods. It s also very simple to customize the dashboard module. Each of the boxes displays the contents of a User Control. Multiple shops in one installation A Webnodes CMS installation can have many sites. Each site can have one shop. Flexibility The module is very flexible in terms of how it s used. It can be the main part of a website, or it can be a small section of a big website. It can also be more tightly integrated with the rest of the site, than most traditional e-commerce software, since it uses the same foundation as the rest of the system. Do you want to mix social media features with the shop? No problem. Or do you want to add product listings in the side column of your regular articles? Not a problem either. The problem is having the imagination to use all the features available. Payments The payment system in the Webnodes e-commerce module is very flexible, and it s easy to add new payment methods. There are two main ways of implementing a new payment method. The first and most basic method is to create a PaymentMethod node in Webnodes. Then you have to create a class that implements an interface. This is a very basic interface, so you ll basically have to write the whole payment process yourself. It s a bit of work, but you get total control over the process, and it will work with any payment method you require. The other method is a more specialized method for credit card payments. There is a CreditCardPayment interface that you can implement to support your credit card processor. The interface has more methods to implement than the basic PaymentMethod interface, but the methods are really simple to implement, so it s much quicker. The system ships with built-in support for a number of credit card processors. Send us an to inquire about the latest list. Shipping In order to support all possible shipping methods, the shipping functionality is handled through a provider based system. This is set up in the way that you create a ShippingMethod node in Webnodes, and one of the properties list the classes that implement the provider interface. By selecting one of the classes, you link the ShippingMethod node with a specific provider class. A provider is a class that implements a specific interface for handling shipping calculations. Page 6

7 So in order to create a custom provider, you create a class that implements the ShippingMethod interface. The interface has only one method called CalculateShippingCosts. There is only one parameter to the method, the Order node. Through the order node, you get easy access to customer location, number of products, product size, product weight or any other parameter that you use to calculate your shipping costs. In order to help with the process of writing a shipping calculation provider, the system has a few example providers built-in, that you can get the source for to learn how to implement a custom shipping calculation. Taxes Tax calculations are also based on a provider model where you can use one of the built-in providers, or write your own. Each shop must select a tax provider to use for all tax calculations in that shop. Page 7

8 The default tax calculation provider is a flat tax rate provider. The tax rate can be set to the desired level. Inventory The e-commerce module has a built-in inventory tracking system. It s a simple system that increments and decrements integer counters as products are sold or returned, based on changed order statuses. But for more advanced needs, for example integrations with inventory systems, the inventory tracking is provider based, so it s very easy to integrate with other systems. When an order changes status, the inventory provider is invoked. The input to the provider is the old status, the new status and the order object. Based on those data it s easy to make all types of integrations with third party systems. Product catalog The product templates in the system are not limited in any way by the system. The content and the presentation are completely separated, which means you can make any type of design. There are two main templates in a product catalog: product templates, and product category templates. A product template refers to the template used to display information about one specific product (with variants), while a product category template refers to the template used to display information about all the products in a product category. Cart/basket There are two different shopping cart views. - The full shopping cart that displays all the information about what s in the shopping cart. There is a ShoppingCartDetails control that displays the detailed cart information. It has a default look, but it s a templated control, so you have full control over the rendering, total freedom over the look and feel of the shopping cart. - The shopping cart summary is a summary that s normally shown on all pages. It often only contain the number of products, and the price of the products in the cart, excluding shipping (and sometimes even tax, depending on what country you live in). The control is fully templated, so you have full control over the look. To add a product to the shopping cart, there are two main ways to do it. : - Use the AddToBasket templated control. It has a default look, but you can control the look by changing the templates. The only requirement is that the template contains a LinkButton, ImageButton or regular Button control with a CommandName called AddToBasket. You can also hide the button if the product is out of stock. - Create the functionality yourself, and use a lower level API to add a product to the shopping cart. This can for example be used in conjunction with an Ajax solution. Page 8

9 Checkout There is a standard checkout process in the module. It contains the following steps: 1. Customer information 2. Payment & Shipping Information 3. Order Received The checkout process can easily be changed to suit your needs. Screenshots Fig 1: Order list Page 9

10 Fig 2: Editing a product. Page 10

11 Fig 3: Product categories Page 11

12 Fig 4: Editing a shop Page 12

Speed Up Magento Web Store Via Magento Extension Support By: M-Connect Media. Prepared By: M-Connect Media

Speed Up Magento Web Store Via Magento Extension Support By: M-Connect Media. Prepared By: M-Connect Media Speed Up Magento Web Store Via Magento Extension Support By: M-Connect Media Considerable Page Structure of PSD To Magento Theme Conversion Magento is more robust and powerful ecommerce platform therefore

More information

DNNSmart Super Store User Manual

DNNSmart Super Store User Manual DNNSmart Super Store User Manual Description This is one simple but useful e-commerce module. It consists of multiple submodules which can help you setup your DNN E-commerce sites quickly. It's very easy

More information

ECommerce Online Store Solution

ECommerce Online Store Solution ECommerce Online Store Solution ADVANTAGES Sell your products online and generate immediate income for your business enterprise. Secure Socket Layer (HTTPS) FEATURES General catalog features Mobile device

More information

Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.

Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo. Create e-commerce website Opencart Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.com Create e-commerce website Opencart What is opencart? Opencart

More information

Magento Feature List. ecommerce Platform for Growth

Magento Feature List. ecommerce Platform for Growth Magento Feature List ecommerce Platform for Growth Magento is a feature-rich, professional Open Source ecommerce platform solution that offers merchants complete flexibility and control over the user experience,

More information

Kentico CMS 7.0 E-commerce Guide

Kentico CMS 7.0 E-commerce Guide Kentico CMS 7.0 E-commerce Guide 2 Kentico CMS 7.0 E-commerce Guide Table of Contents Introduction 8... 8 About this guide... 8 E-commerce features Getting started 11... 11 Overview... 11 Installing the

More information

Multi-Store Ecommerce Application Case Study

Multi-Store Ecommerce Application Case Study Multi-Store Ecommerce Application Case Study Table Of Contents 1. Overview... 3 2. Key Traits of the Ecommerce Platform using Magento... 4 3. Key Traits of the Ecommerce System built using Magento and

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2011-05-19 Sitecore E-Commerce Fundamental Edition 1.1 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2012-02-17 Sitecore E-Commerce Services 1.2 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring Sitecore

More information

Thank you for using Mercantec's E-Commerce Express the world's first FREE shopping cart.

Thank you for using Mercantec's E-Commerce Express the world's first FREE shopping cart. Mercantec Since 1995, the Web's E-Commerce Pioneer Thank you for using Mercantec's E-Commerce Express the world's first FREE shopping cart. This guide is designed to get you up and running in 5 minutes

More information

Magento Features List

Magento Features List Magento Features List Magento is a feature-rich ecommerce platform solution that ofers merchants complete lexibility and control over the functionality of their online channel. Magento s search engine

More information

AJ Shopping Cart. Administration Manual

AJ Shopping Cart. Administration Manual AJ Shopping Cart Administration Manual AJ Square Consultancy Services (p) Ltd., The Lord's Garden, #1-12, Vilacheri Main Road, Vilacheri, Madurai-625 006.TN.INDIA, Ph:+91-452-2485553, 2485554. Fax : 2484600

More information

LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO. Discussion of Features

LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO. Discussion of Features LYONSCG ECOMMERCE ACCELERATOR (LEA) FOR MAGENTO Discussion of Features Eric Marsh July 2015 1 AN INNOVATIVE ecommerce SOLUTION The LYONSCG ecommerce Accelerator (LEA) for Magento was developed for small

More information

The term e-commerce refers to buying, selling or ordering goods and services on the Internet. It is a subset of e-business.

The term e-commerce refers to buying, selling or ordering goods and services on the Internet. It is a subset of e-business. Enabling e-commerce Creating an online store The term e-commerce refers to buying, selling or ordering goods and services on the Internet. It is a subset of e-business. So e-commerce happens when any commercial

More information

A Close Look at Drupal 7

A Close Look at Drupal 7 smart. uncommon. ideas. A Close Look at Drupal 7 Is it good for your bottom line? {WEB} MEADIGITAL.COM {TWITTER} @MEADIGITAL {BLOG} MEADIGITAL.COM/CLICKOSITY {EMAIL} INFO@MEADIGITAL.COM Table of Contents

More information

C1 ecommerce Core Building Successful Online Shops

C1 ecommerce Core Building Successful Online Shops C1 ecommerce Core Building Successful Online Shops Building a Basic Online Shop: 6 Steps: Se#ng Up Catalogs 5 mins Adding Products 15 mins Customizing Layout (invoice, shopping cart) 15 mins Shipping Op@ons

More information

E-Commerce User Instructions

E-Commerce User Instructions E-Commerce User Instructions Oxarc s E-Commerce system provides the following functions via the Internet: purchase any products that we sell. request special products that we don t normally stock. create

More information

Ecommerce and PayPal Shopping Cart

Ecommerce and PayPal Shopping Cart 1 of 5 Ecommerce and PayPal Shopping Cart NOTE: If you do not see the "SETTINGS" tab at the top of your editor and you need to make a change or add shopping cart functionality, please send a request to

More information

E-Commerce SOLUTIONS. Generate Online Revenue with E-Commerce Solutions. www.monexgroup.com

E-Commerce SOLUTIONS. Generate Online Revenue with E-Commerce Solutions. www.monexgroup.com E-Commerce SOLUTIONS In this report, MONEXgroup examines various types of online payment processing and E-Commerce Solutions. The tremendous transition towards online shopping stores in Canada has opened

More information

Advanced Order Management Module Hosted Ecommerce Service Module Help Document

Advanced Order Management Module Hosted Ecommerce Service Module Help Document Advanced Order Management Module Hosted Ecommerce Service Module Help Document This module is available as Optional Add On Module at one time charges of US $125.00 * on hosting plans as available at ecommercehosted.com

More information

HERE S HOW APLICOR 3C HELPS GROWING COMPANIES CASE FOR ROI

HERE S HOW APLICOR 3C HELPS GROWING COMPANIES CASE FOR ROI Aplicor assumes no liability with respect to the use of the information contained herein which is provided as is and there are no warranties of any kind provided by Aplicor with respect to this document.

More information

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List Magento is a feature-rich, professional Open Source ecommerce platform solution that offers merchants complete flexibility and control over the user experience, content, and functionality of their online

More information

magento features list

magento features list features list magento features list Magento is a feature-rich ecommerce platform solution that offers merchants complete flexibility and control over the functionality of their online channel. Magento

More information

A Short Term E-commerce Course

A Short Term E-commerce Course ADMEC TM Multimedia Institute A Short Term E-commerce Course E-commerce Standard Duration: 03 Months w [Class Room Online Training] TM An ISO 9001:2008 Institute w Drupal Magento WordPress Basics of E-commerce

More information

1. E-commerce features... 4 1.1 Getting started with the E-commerce Solution... 6 1.1.1 Installing your sample E-commerce Site... 6 1.1.

1. E-commerce features... 4 1.1 Getting started with the E-commerce Solution... 6 1.1.1 Installing your sample E-commerce Site... 6 1.1. Kentico 8 E-commerce features..................................................................................... 4 1 Getting started with the E-commerce Solution.............................................................

More information

Setting Up Your Online ecommerce Shopping Cart

Setting Up Your Online ecommerce Shopping Cart Setting Up Your Online ecommerce Shopping Cart Setting Up Your Online ecommerce Shopping Cart Contents o Building Your ecommerce Shopping Cart o Creating Products o Configuring Shipping & Verifying Taxes

More information

Media Chase ECF ecommece & Catalogue best-of-breed CMS

Media Chase ECF ecommece & Catalogue best-of-breed CMS Media Chase ECF ecommece & Catalogue best-of-breed CMS 01 About ARES ARES has been providing our clients with solutions online and beyond for more than ten years. Out reputation is founded on our capacity

More information

YES YES YES YES YES YES YES YES YES YES YES YES

YES YES YES YES YES YES YES YES YES YES YES YES Website Features Pre-Loaded with Products Product Feeds from the Industry s leading vendors Shopping Cart Drop-Shipping Option Set Selling Prices Add Pages of Information Add Products No Programming Printable

More information

Copyright EPiServer AB

Copyright EPiServer AB Copyright Table of Contents 3 Table of Contents Introduction 5 About This Documentation 5 Accessing EPiServer Help System 6 Online Community on EPiServer World 6 Copyright Notice 6 About EPiServer Commerce

More information

Magento Enterprise Edition Datasheet

Magento Enterprise Edition Datasheet Magento Enterprise Edition Datasheet Increase Control Increase ROI Increase Flexibility Increase Growth Platform for Growth Magento provides the optimal platform for business growth Scalability Magento

More information

Order Manager Cookbook

Order Manager Cookbook Order Manager Cookbook Rev: 2013-07-23 Sitecore E-Commerce Services 2.1 on CMS 7.0 Order Manager Cookbook An end user guide to Sitecore E-Commerce Services and Order Manager Table of Contents Chapter 1

More information

Tutorial of Website s New Features

Tutorial of Website s New Features Tutorial of Website s New Features Table of Contents Product Search...M-4-5 Manage My Account...M-6-10 Quick Order Pad... M-11 Quick Stock Check... M-11 Request Quote... M-11 Company.... M-12 Support....

More information

ecommerce (webstore) Storefront for SupplyPoint

ecommerce (webstore) Storefront for SupplyPoint TM Fact Sheet ecommerce (webstore) Storefront for SupplyPoint Highlights Update automation and complete visibility Central point for pricing and discount configuration CRM integration Webstore tool integration

More information

Configuration > Payment gateways Configure the payment gateway tokens for your credit card and PayPal payment methods if applicable.

Configuration > Payment gateways Configure the payment gateway tokens for your credit card and PayPal payment methods if applicable. Storefront Users Manual Quick Start Settings Your shopping cart is pre-configured with default values suitable for most businesses. In most cases, you only need to configure the settings below to start

More information

Checkout FAQs. What are my Pay Now Button Options? These options define the end user experience of your buyers during checkout.

Checkout FAQs. What are my Pay Now Button Options? These options define the end user experience of your buyers during checkout. Customize ebay Checkout Checkout FAQs What are my Pay Now Button Options? These options define the end user experience of your buyers during checkout. Do not show Pay Now option This option will not publish

More information

E-Commerce ERP for successful online business.

E-Commerce ERP for successful online business. E-Commerce ERP for successful online business. plentymarkets: E-Commerce ERP for successful online business. You can manage all of your online business processes with one software: plentymarkets. From

More information

Web Development QUESTIONNAIRE. Version: 1.0 BIG!

Web Development QUESTIONNAIRE. Version: 1.0 BIG! Web Development QUESTIONNAIRE Version: 1.0 BIG! TABLE OF CONTENTS 1. Client Details... 3 2. Basic Site Info... 4 3. Site Layout and Design... 6 4. Public Features... 7 5. Admin Features...8 6. Ecommerce

More information

Sitecore E-Commerce DMS Cookbook

Sitecore E-Commerce DMS Cookbook Sitecore E-Commerce Services 1.2.0 Sitecore E-Commerce DMS Cookbook Rev: 2011-11-28 Sitecore E-Commerce Services 1.2.0 Sitecore E-Commerce DMS Cookbook A marketer's guide to Sitecore E-Commerce Services

More information

Magento module Documentation

Magento module Documentation Table of contents 1 General... 4 1.1 Languages... 4 2 Installation... 4 2.1 Search module... 4 2.2 Installation in Magento... 6 2.3 Installation as a local package... 7 2.4 Uninstalling the module... 8

More information

Software Development & Education Center PHP 5

Software Development & Education Center PHP 5 Software Development & Education Center PHP 5 (ADVANCE) Detailed Curriculum Advance PHP JQuery Basics Of JQuery Including the JQuery Library Code in an HTML Page JQuery Utilities Faster, Simpler, More

More information

ecommerce User Guide LS Nav 2013 (7.1) Copyright 2014, LS Retail ehf. All rights reserved. All trademarks belong to their respective holders

ecommerce User Guide LS Nav 2013 (7.1) Copyright 2014, LS Retail ehf. All rights reserved. All trademarks belong to their respective holders ecommerce User Guide LS Nav 2013 (7.1) Copyright 2014, LS Retail ehf. All rights reserved. All trademarks belong to their respective holders Contents 1 Introduction... 1 1.1 System Requirements... 2 2

More information

Content Management System

Content Management System Content Management System XT-CMS + XARA Guide & Tutorial The purpose of this guide and tutorial is to show how to use XT-CMS with web pages exported from Xara. Both Xara Web Designer and Xara Designer

More information

Table of Contents. Introduction... 1 Technical Support... 1

Table of Contents. Introduction... 1 Technical Support... 1 E-commerce Table of Contents Introduction... 1 Technical Support... 1 Introduction... 1 Getting Started... 2 Data Synchronization... 2 General Website Settings... 2 Customer Groups Settings... 3 New Accounts

More information

WISSEND. Wissend Perception. Ecommerce Platforms Insights

WISSEND. Wissend Perception. Ecommerce Platforms Insights WISSEND Wissend Perception Ecommerce Platforms Insights Technology investments are exorbitant, so a wrong choice is unaffordable. Whether you are in the market for a new ecommerce platform or bolt-in applications

More information

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List Magento is a feature-rich, professional Open Source ecommerce platform solution that offers merchants complete flexibility and control over the user experience, content, and functionality of their online

More information

How To Manage Inventory In Commerce Server

How To Manage Inventory In Commerce Server 4 The Inventory System Inventory management is a vital part of any retail business, whether it s a traditional brick-and-mortar shop or an online Web site. Inventory management provides you with critical

More information

The store we are building http://www.mentalmanagementstore.com. Webinar Format 90 minutes of instruction, 30 minutes of Q&A

The store we are building http://www.mentalmanagementstore.com. Webinar Format 90 minutes of instruction, 30 minutes of Q&A Course Introduction 6 week course build an online store The store we are building http://www.mentalmanagementstore.com Webinar Format 90 minutes of instruction, 30 minutes of Q&A Course Introduction Written

More information

Website Design Application Form

Website Design Application Form Website Design Application Form The following three part questionnaire will help us estimate the timeline and cost of your new website. To give you the best quality web design directly depends on us clearly

More information

FACT SHEET. EXTENDED B2B MODULE Creating a customized experience with simplified ordering and reduced complexity.

FACT SHEET. EXTENDED B2B MODULE Creating a customized experience with simplified ordering and reduced complexity. FACT SHEET EXTENDED B2B MODULE Creating a customized experience with simplified ordering and reduced complexity. MAKE ORDERING EASIER AND SIMPLIFY THE OVERALL PROCESS THROUGH A SELF-SERVICE ONLINE TOOL

More information

Ecommerce Website Design

Ecommerce Website Design Ecommerce Website Design Ecommerce is the latest trend of business process favored by majority; Ecommerce is nothing but exchange of goods and services for money, being conducted via electronic medium

More information

How to Create a Simple WordPress Store Online for Free

How to Create a Simple WordPress Store Online for Free How to Create a Simple WordPress Store Online for Free The Internet is one of the most fertile grounds on which you can build a business to sell your products or services. This is because of the fact that

More information

3dCart Shopping Cart Software Release Notes Version 3.0

3dCart Shopping Cart Software Release Notes Version 3.0 Release Overview The latest installment in the 3dCart shopping software (version 3.0), is a complete redesign of the 3dCart platform. It includes performance improvements, new features, and usability enhancements.

More information

Magento 1.3 Feature List

Magento 1.3 Feature List ecommerce Platform for Growth Magento 1.3 Feature List Site Management Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed

More information

ORDERING ONLINE WITH YOURAVON.COM

ORDERING ONLINE WITH YOURAVON.COM ORDERING ONLINE WITH YOURAVON.COM The My Orders section of youravon.com is your dashboard for everything related to your Customer orders and your Orders submitted to AVON. Here, you can: Search Customers

More information

Managing Customers. Pipfrog AS www.pipfrog.com

Managing Customers. Pipfrog AS www.pipfrog.com Customer Management Managing Customers Customer management takes place in the Manage Customers submenu of Customers menu. Customer management page displays information on registered customers. Customers

More information

API Integration Guide

API Integration Guide API Integration Guide INTEGRATION GUIDE VERSION 2.2 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...6 1.4 Technical Architecture...6

More information

Benefits of AspDotNetStorefront for Interprise Suite include

Benefits of AspDotNetStorefront for Interprise Suite include To overcome the challenges of today s modern business, we have developed AspDotNetStorefront for Interprise Suite, the first affordable application to combine the most commonly used ebusiness functions

More information

User s Guide. Version 2.1

User s Guide. Version 2.1 Content Management System User s Guide Version 2.1 Page 1 of 51 OVERVIEW CMS organizes all content in a tree hierarchy similar to folder structure in your computer. The structure is typically predefined

More information

5 Things Your Commerce Platform Should Do For You

5 Things Your Commerce Platform Should Do For You 5 Things Your Commerce Platform Should Do For You An Amazon Webstore Guide Selecting an ecommerce platform is a tricky proposition, as the platform can either restrict or facilitate the growth of the business.

More information

How to Use e-commerce on www.avantormaterials.com

How to Use e-commerce on www.avantormaterials.com How to Use e-commerce on www.avantormaterials.com Welcome to the Avantor Website! Setting up an account, ordering products and checking your order status have never been easier. Simply follow the instructions

More information

Axis LMS Shopping Cart Guide

Axis LMS Shopping Cart Guide Axis LMS Shopping Cart Guide Proprietary Notice The software described in this document is a proprietary product of Atrixware, and is furnished to the user under a license for use as specified in the license

More information

My Store. Quick Startup Guide. DIY online store builder

My Store. Quick Startup Guide. DIY online store builder Quick Startup Guide My Store DIY online store builder Thank you for selecting Netregistry to create your online presence. In this guide we will run you through the basic steps to get online. Call 1300

More information

Kentico E-commerce Solution for developers

Kentico E-commerce Solution for developers for developers Unlimited Development Options. Flexible platform for use with a variety of online stores Ready-to-use online store templates DevNet community portal for questions and add-ons Closed-loop

More information

CHAPTER 26 - SHOPPING CART

CHAPTER 26 - SHOPPING CART CHAPTER 26 - SHOPPING CART ecommerce Hosting With ihoststudio's Shopping Cart Sell your items on the web with the ihoststudio shopping cart. Product catalogs Shopping cart Credit Card Payments Store control

More information

Multi Currency Module Hosted Ecommerce Service Module Help Document

Multi Currency Module Hosted Ecommerce Service Module Help Document Multi Currency Module Hosted Ecommerce Service Module Help Document This module is installed on all stores by default under all hosting plans of hosted e-commerce service as available at ecommercehosted.com

More information

E-Commerce. Version 4.0.3 CDM SOFTWARE 800-680-8484 1111-282 PART A3

E-Commerce. Version 4.0.3 CDM SOFTWARE 800-680-8484 1111-282 PART A3 2012 E-Commerce Version 4.0.3 CDM SOFTWARE 800-680-8484 1111-282 PART A3 E-COMMERCE 800-680-8484 www.cdmsoftware.com 2 CDM E-COMMERCE CDM E-Suite is the COMPLETE E-commerce Solution for the small to mid-sized

More information

Faichi Solutions. Drupal Commerce An Ideal Solution for Your ecommerce Platform. Contents. Whitepaper published on 1 ST Nov. 2014

Faichi Solutions. Drupal Commerce An Ideal Solution for Your ecommerce Platform. Contents. Whitepaper published on 1 ST Nov. 2014 Faichi Solutions Drupal Commerce An Ideal Solution for Your ecommerce Platform Whitepaper published on 1 ST Nov. 2014 Compiled & Written by: Ashwini Kumar, Team Drupal, Faichi Edited by: Payal Mathur,

More information

Magento Features List

Magento Features List Magento Features List Magento is a feature-rich ecommerce platform solution that offers merchants complete flexibility and control over the functionality of their online channel. Magento s search engine

More information

Ways to Increase Sales From Your Online Store

Ways to Increase Sales From Your Online Store Ways to Increase Sales From Your Online Store The text in this document is copyright 2013 Infinite Softech. You may quote this document in whole or in part, online or in printed format, as long as proper

More information

office products online business system

office products online business system office products online business system A comprehensive and customized ecommerce and CRM application fully integrated with each other and the supply chain to start, manage and/or grow an online office products

More information

Release Notes. Documentation V3.0

Release Notes. Documentation V3.0 Release Notes Documentation V3.0 Table of Contents InvoiceIT Payment improvement 1.1 Stripe Payment gateway 1.2 Configuring Payment gateways on Account level 1.3 SAGEPAY Payment gateway 1.4 Disabling button

More information

DEEP DIVE COMPARATIVE ANALYSIS OF E-COMMERCE TOOLS

DEEP DIVE COMPARATIVE ANALYSIS OF E-COMMERCE TOOLS DEEP DIVE COMPARATIVE ANALYSIS OF E-COMMERCE TOOLS Kumar Mallampalli Head Emerging Solutions and IT Services Table of Contents 1 Introduction... 2 2 The Challenges... 3 3 Solutions Options... 4 3.1 Open

More information

Building engaging and relevant ecommerce experiences with Multifront 7.0.

Building engaging and relevant ecommerce experiences with Multifront 7.0. Multifront 7.0 FEATURES Building engaging and relevant ecommerce experiences with Multifront 7.0. Multifront 7.0 represents a revolutionary leap forward for ecommerce. The Multifront.NET ecommerce platform

More information

Copyright EPiServer AB

Copyright EPiServer AB Copyright Table of Contents 3 Table of Contents The EPiServer Commerce User Guide 13 About This Documentation 15 Online Community on EPiServer World 15 Copyright Notice 15 The EPiServer Commerce Platform

More information

FEASIBILITY STUDY: BESTOYS ONLINE PRESENCE 1234 GIRARD AVENUE PHILADELPHIA, PA 19122 BRITT BOUKNIGHT

FEASIBILITY STUDY: BESTOYS ONLINE PRESENCE 1234 GIRARD AVENUE PHILADELPHIA, PA 19122 BRITT BOUKNIGHT FEASIBILITY STUDY: BESTOYS ONLINE PRESENCE 1234 GIRARD AVENUE PHILADELPHIA, PA 19122 BRITT BOUKNIGHT FRIDAY, SEPTEMBER 12, 2014 TABLE OF CONTENTS 1. EXECUTIVE SUMMARY... 2 2. DESCRIPTION OF PRODUCTS AND

More information

Online Shop System Use Case Diagram Report (Demo)

Online Shop System Use Case Diagram Report (Demo) Online Shop System Use Case Diagram Report (Demo) Visual Paradigm International Ltd. Table of Contents initial use case diagram... 4 Revised Use Case Diagram... 7 Table of Figures initial use case diagram...

More information

Developer: Features: Alistek

Developer: Features: Alistek JERA B2C Ecommerce Suite The ecommerce suite features JERA Framework configuration of OpenERP and Joomla! CMS online integration with multiple common features and unlimited customization options. JERA

More information

Introduction to Clarity Connect s Standard E-Commerce/Store Manager Solution

Introduction to Clarity Connect s Standard E-Commerce/Store Manager Solution Introduction to Clarity Connect s Standard E-Commerce/Store Manager Solution This document contains a detailed description of the functionality provided in a standard e commerce implementation with Clarity

More information

How To Build An Online Store On Ecwid

How To Build An Online Store On Ecwid Using Ecwid to Build an Online Store Ecwid provides all you need for a one-stop online shop, including a built-in 'drag and drop' shopping cart, the recording of customer registration details, destination

More information

Context, Architecture, Process, and Integration Diagrams

Context, Architecture, Process, and Integration Diagrams Context, Architecture, Process, and Integration Diagrams This document includes several diagrams and pictures that can assist in understanding the overall nature of the ECF. These diagrams can be used

More information

Chase Mobile Checkout Canada User Guide

Chase Mobile Checkout Canada User Guide Chase Mobile Checkout Canada User Guide TM Trademark of Chase Paymentech, LLC, Chase Paymentech Solutions authorized user. Contents 1. INTRODUCTION... 3 1.1. OVERVIEW... 3 1.2. GET ADDITIONAL ASSISTANCE...

More information

Online Store Widget 101. A Guide for New Users

Online Store Widget 101. A Guide for New Users Online Store Widget 101. A Guide for New Users Contents What is Ecwid?... 2 How Does it Work?... 2 Adding Ecwid to Your Site: 3 Easy Steps... 4 Adding Products & Categories... 5 Setting Up Your Store...

More information

This guide shows you the process for adding ecart to your online store so that you can start selling products online.

This guide shows you the process for adding ecart to your online store so that you can start selling products online. ecart will add invaluable checkout functionality to your online store. This includes the ability to create and design a shopping cart page, add products to a cart, and create all the necessary pages for

More information

Web Account & E-commerce Quick Reference Guide

Web Account & E-commerce Quick Reference Guide We just made your life easier. Web Account & E-commerce Quick Reference Guide THE COLOR PRINTER, INC. 200 W. Taylor St. Hobbs, NM 88240 (575) 393-8188 (866) 800-8188 info@thecolorprinter.com www.thecolorprinter.com

More information

Shopping Cart Add-On Help. for. Price Comparison Script. April 9, 2015

Shopping Cart Add-On Help. for. Price Comparison Script. April 9, 2015 Shopping Cart Add-On Help for Price Comparison Script Last Updated On: April 9, 2015 What is Shopping Cart Add-On? With the shopping cart add-on, merchants on your price comparison website will be able

More information

1. GENERAL INFORMATION... 3 1.1. 3 1.2. 3 2. PROCESS AND WORKSPACE OVERVIEW... 4 2.1. 4 2.2. 5 2.2.1. 5 2.2.2. 6 2.2.3. 7 2.2.4. 9 2.2.5.

1. GENERAL INFORMATION... 3 1.1. 3 1.2. 3 2. PROCESS AND WORKSPACE OVERVIEW... 4 2.1. 4 2.2. 5 2.2.1. 5 2.2.2. 6 2.2.3. 7 2.2.4. 9 2.2.5. TABLE OF CONTENTS 1. GENERAL INFORMATION... 3 1.1. System overview... 3 1.2. The purpose of the user guide... 3 2. PROCESS AND WORKSPACE OVERVIEW... 4 2.1. Authorization... 4 2.2. Workspace overview...

More information

MAGENTO CERTIFIED SOLUTION SPECIALIST EXAM. What is the difference between Omni Channel and multichannel retailing?

MAGENTO CERTIFIED SOLUTION SPECIALIST EXAM. What is the difference between Omni Channel and multichannel retailing? MAGENTO CERTIFIED SOLUTION SPECIALIST EXAM Content Area 1: ecommerce Content Area 2: Magento Architecture Content Area 3: Elements of a Magento Commerce Site 3.1 Catalog 3.2 Shopping Cart 3.3 Payment 3.4

More information

Requesting Access to Cascade Server

Requesting Access to Cascade Server 1 of 6 Requesting Access to Cascade Server In an effort to make the process for gaining access to Cascade Server easier to track and manage, the Marketing and Communications web team has worked with Information

More information

A comprehensive ecommerce solution that enables companies to build and operate a profitable direct-to-consumer business.

A comprehensive ecommerce solution that enables companies to build and operate a profitable direct-to-consumer business. A comprehensive ecommerce solution that enables companies to build and operate a profitable direct-to-consumer business. Amazon Webstore readily enables companies to achieve their strategic ecommerce priorities,

More information

Ordering Items From TRIUMF Stores Using Unit4 Agresso By Ted Schenkeveld

Ordering Items From TRIUMF Stores Using Unit4 Agresso By Ted Schenkeveld Ordering Items From TRIUMF Stores Using Unit4 Agresso By Ted Schenkeveld 1 2 1. When you sign into Agresso you will see the following splash page. From the menu on the left hand side select Procurement

More information

Engage. Evolve. Empower!

Engage. Evolve. Empower! Engage. Evolve. Empower! Who we are GLIMSOL is a web design, web development, and web consulting firm dedicated to provide expertise on the strategical information development of small to enterprise organizations.

More information

RESEARCH NOTE NETSUITE S IMPACT ON E-COMMERCE COMPANIES

RESEARCH NOTE NETSUITE S IMPACT ON E-COMMERCE COMPANIES Document L17 RESEARCH NOTE NETSUITE S IMPACT ON E-COMMERCE COMPANIES THE BOTTOM LINE Nucleus Research analyzed the activities of online retailers using NetSuite to assess the impact of the software on

More information

CRAFT ERP modules. Introduction

CRAFT ERP modules. Introduction Introduction 1 1 Introduction CRAFT is an ERP system providing automation in most important business aspects of an enterprise: Customer relations, Financial operations, Production and Distribution operations,

More information

Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one

Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one Best Purchased Products Report Administration Panel with ability to share as much

More information

Shopping Cart Software

Shopping Cart Software Shopping Cart Software QuickStart Guide 1 Please note: The Quick Start guide covers only the minimum requirements to get your cart up and running; there are many more features for you to take advantage

More information

Release Notes 2016.2 Feature Release

Release Notes 2016.2 Feature Release Release Notes 2016.2 Feature Release Table of Contents New Features Litmos Boost ecommerce for Learning Paths ecommerce for Learning Paths via Shopify Integration BambooHR Integration Bug Fixes & Minor

More information

New Mexico Broadband Program. Internet Tools for Small Business Success. Module 8 E-Commerce

New Mexico Broadband Program. Internet Tools for Small Business Success. Module 8 E-Commerce New Mexico Broadband Program Internet Tools for Small Business Success Module 8 E-Commerce Internet Tools for Small Business Success Class Series 1. Terminology & Planning 2. Communication & Collaboration

More information

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW

quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick-start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along

More information

WebSphere Commerce Overview for Vector. 2014 IBM Corporation

WebSphere Commerce Overview for Vector. 2014 IBM Corporation WebSphere Commerce Overview for Vector Agenda WebSphere Commerce Overview Starter Stores Extended Sites Mobile Commerce Tooling Precision Marketing Promotions Search Solr Summary Capabilities References

More information