Using the Add to Cart API with JavaScript Guide

Size: px
Start display at page:

Download "Using the Add to Cart API with JavaScript Guide"

Transcription

1 About the Add to Cart API SHOPATRON INTEGRATION TOOLSET Using the Add to Cart API with JavaScript Guide FOR USE WITH VERSIONS 2.2 OR LATER OF SHOPATRON'S ADD TO CART SOFTWARE ADD TO CART XML API GUIDE 5/29/13 PAGE 1

2 Copyright 2013 Shopatron, Inc. Using the Add to Cart API with JavaScript Guide, Version 2.2 This document contains proprietary and confidential information of Shopatron, Inc., and is protected by Federal copyright law. The contents of this document may not be disclosed to third parties, translated, copied, or duplicated in any form, in whole or in part, (or by any means, electronic, mechanical, photocopying, or otherwise) without the express written permission of Shopatron, Inc. The information contained in this document is subject to change without notice. Neither Shopatron, Inc., its affiliates, nor their directors, officers, employees, or agents, are responsible for punitive or multiple damages or lost profits or other special, direct, indirect, incidental, or consequential damages, including any damages resulting from loss of business arising out of or resulting from the use of this material, or for technical or editorial omissions or errors made in it. Aspects of the Shopatron network are patented, patent-pending, or patent-applied for. Shopatron North America Shopatron, Inc. P.O. Box 5351 San Luis Obispo, CA, Shopatron Europe Shopatron UK, Ltd. Newport House Newport Street Old Town, Swindon SN1 3DX

3 Contents About the Add to Cart API... 4 Related Documentation... 4 Before You Modify Your Web Pages... 5 Get your API key... 5 Load the JavaScript library... 5 Include default styling... 5 Want to Try It Out?... 5 Place an Add to Cart Button... 5 Add a Quick Cart View and Icon... 7 Provide a Shopatron Cart... 9

4 About the Add to Cart API About the Add to Cart API Thank you for using Shopatron's Add to Cart! The Add to Cart web service makes it easy to add Shopatron ecommerce capabilities to your site. With Add to Cart, you can: 1. Place Add to Cart buttons on your site s product pages. The Add to Cart widget sends product data to a Shopatron cart. When a consumer clicks an Add to Cart button, your system makes an API call to add that product to the consumer s Shopatron shopping cart, at the correct price and quantity, with the specified options. 2. Add a Quick Cart view and icon to the header of your website. The Quick Cart retrieves the consumer s current cart contents from Shopatron. It displays cart information on the web page, and will update when the cart contents change. 3. Add a Shopatron shopping cart to your website. The shopping cart gets the HTML cart from Shopatron. Shopping cart data may be provided in a rendered HTML format that can be embedded into the central area of a shopping cart page, or it may be in a raw-data JSON format that can be formatted to create a cart page. Finally, in its simplest form, the shopping cart data may be provided as a standard Shopatron shopping cart. The shopping cart area may be fully hosted by Shopatron or it may be hosted by your company. 4. Process your orders in Shopatron! NOTE: This document is for clients who manage their product data in Shopatron. A separate document (available late 2012) will describe how to use Add to Cart if you manage your products elsewhere. Related Documentation This document describes how to use JavaScript to add shopping cart functionality to your web pages. If you don t need a high level of flexibility and control and are looking for a simpler process, you can use XML instead. For details, see Using the Add to Cart API with XML Guide. USING THE ADD TO CART API WITH JAVASCRIPT GUIDE, VERSION 2.2 5/29/13 PAGE 4

5 Before You Modify Your Web Pages If you are seeking greater flexibility, see the JSON for Add to Cart User s Guide and the Add to Cart Developer's Guide. Before You Modify Your Web Pages Get your API key Before you can use the Add to Cart API on your own site, you must acquire an API key. This key gives you access to the API and identifies your site. Call Shopatron Merchant Support at (877) or mss@shopatron.com to get your API key. Load the JavaScript library Before you can modify any page, you must load our JavaScript library. The process for loading the library is the same for every page. Simply add the following code to the <head> tag of the HTML for every page you modify. Replace xmvhrhuw with the API key you received from Shopatron. <script id="shopatroncart" src=" type="text/javascript">{"apikey":"xmvhrhuw"}</script> <script src=" min.js" type="text/javascript"></script Include default styling If you are not styling the Add to Cart button, quick cart view, and shopping cart, add the following code to the <head> tag for each page you modify: <link rel="stylesheet" href=" type="text/css" /> Want to Try It Out? You can see the Add to Cart API in action before you use it on your own web pages. Just follow the examples in this document, which use these API Key and Part Number values: API Key: xmvhrhuw Part Numbers: , , , , Place an Add to Cart Button You can place Add to Cart buttons on your web pages. When clicked, the buttons send a customer s cart information to a Shopatron cart. All you have to do is add a few simple lines of code to the page. USING THE ADD TO CART API WITH JAVASCRIPT GUIDE, VERSION 2.2 5/29/13 PAGE 5

6 Place an Add to Cart Button 1. Insert the following code on the page. Include appropriate values for Part Number and other variables. Don t forget to load the JavaScript library for the page, too! The Simple example includes only the required fields. The Advanced example includes more of the available values. For information about available fields, see Table 1. Simple: <script type="text/javascript"> Shopatron('#atc_button_div_id').addToCartButton({ partnumber: '200001' { clicksuccess: function () { alert('successfully added item to cart'); } }); </script> Advanced: <script type="text/javascript"> Shopatron('#atc_button_div_id').addToCartButton({ partnumber: '100001', productlink: ' { success: function() { alert('add to Cart button loaded'); error: function() { alert('failed to load Add to Cart button'); complete: function() { alert('button load attempt completed'); clicksuccess: function() { alert('item added to cart'); clickerror: function() { alert('failed to add item to cart'); clickcomplete: function() { alert('attempt to add item complete'); } }); </script> 2. In the location on the web page where you want the Add to Cart button to appear, insert this code: <div id="atc_button_div_id"></div> USING THE ADD TO CART API WITH JAVASCRIPT GUIDE, VERSION 2.2 5/29/13 PAGE 6

7 Add a Quick Cart View and Icon Table 1. Add to Cart button fields for JavaScript Field Type Default Description partnumber* string None The part number of the product being added to the cart. clicksuccess* function Required JavaScript that will be executed when an item is successfully added to the cart. productlink URL Current page A direct link to the product detail page. success function None JavaScript that will be executed if the Add to Cart button is loaded successfully. error function None JavaScript that will be executed if the button is not loaded successfully. complete function None JavaScript that will be executed when the button is loaded either successfully or unsuccessfully. clickerror function None JavaScript that will be executed when an item is not successfully added to the cart. clickcomplete function None JavaScript that will be executed when an item is added to the cart either successfully or unsuccessfully. * Required Add a Quick Cart View and Icon You can easily add a Quick Cart view that will show a customer s current cart information (number of items and product total). As the customer changes the contents of their cart, the Quick Cart view will update to show their changes. 1. Insert the following code on the page, including appropriate values for the cart_url and other parameters: The Simple example includes only the required fields. The Advanced example includes more of the available values. For information about available fields, see Table 2. Siimple: <script type="text/javascript"> Shopatron('#quick_cart_div_id').getQuickCart({ USING THE ADD TO CART API WITH JAVASCRIPT GUIDE, VERSION 2.2 5/29/13 PAGE 7

8 Add a Quick Cart View and Icon cartlink: '/cart_url' }); </script> Advanced: <script type="text/javascript"> Shopatron('#quick_cart_div_id').getQuickCart({ cartlink: '/cart_url' { success: function (data, textstatus) { alert("cart loaded succesfully"); error: function (textstatus, errorthrown) { alert("cart failed to load"); complete: function (textstatus) { alert("cart loaded"); } }); </script> 2. In the location on the web page where you want the Add to Cart button to appear, insert the following code: <div id="quick_cart_div_id"></div> Table 2. Quick Cart fields for JavaScript Field Type Default Description cartlink* URL None Links the Quick Cart to the specified cart page. success function None Called after a response is received from the server that the Quick Cart loaded successfully. error function None Called after a response is received from the server that the Quick Cart did not load successfully. complete function None Called after any response is received from the server that the Quick Cart has finished loading (whether successful or not). * Required USING THE ADD TO CART API WITH JAVASCRIPT GUIDE, VERSION 2.2 5/29/13 PAGE 8

9 Provide a Shopatron Cart Provide a Shopatron Cart You can provide a fully functional Shopatron shopping cart to the consumer, complete with Remove Item, Update Quantity, and Checkout functionality. This will show current cart data in an HTML Shopatron cart. When the customer clicks the shopping cart's Checkout button, they go to Shopatron checkout. 1. Insert the following code on the page, including appropriate values. The Simple example includes only the required fields. The Advanced example includes more of the available values. For information about available fields, see Table 3. Simple: <script type="text/javascript"> Shopatron('#full_cart_div_id').getCart(); </script> Advanced: < script type = "text/javascript" > Shopatron('#full_cart_div_id').getCart({ imagewidth: 100, imageheight: 100 { success: function(cartdata) { alert("successfully retrieved cart"); error: function() { alert("failed to retrieve cart"); complete: function() { alert("cart retrieved"); } }); < /script> 2. In the location on web page where you want the Add to Cart button to appear, insert the following code: <div id="full_cart_div_id"></div> Table 3. Shopping Cart fields for JavaScript Field Type Default Description success function None Called after a success response is received from the server. error function None Called after an error response is received from the server. complete function None Called after any response is received from the server. USING THE ADD TO CART API WITH JAVASCRIPT GUIDE, VERSION 2.2 5/29/13 PAGE 9

10 Provide a Shopatron Cart Field Type Default Description imagewidth int 100 The width of the cart item image in pixels. imageheight int 100 The height of the cart item image in pixels. * Required USING THE ADD TO CART API WITH JAVASCRIPT GUIDE, VERSION 2.2 5/29/13 PAGE 10

Using the Content Manager

Using the Content Manager Using the Content Manager 2010, Shopatron, Inc. Using the Content Manager September 2010 This document contains proprietary and confidential information of Shopatron, Inc., and is protected by Federal

More information

The LivePerson Tag. Technical Data Sheet. Document Version: 1.0. December 2012

The LivePerson Tag. Technical Data Sheet. Document Version: 1.0. December 2012 Document Version: 1.0 December 2012 Introduction enables you to implement innovative LivePerson products and applications, and the ability to monitor your website traffic, without the need to continually

More information

FORD MOTOR COMPANY OF AUSTRALIA LTD

FORD MOTOR COMPANY OF AUSTRALIA LTD Microcat MARKET Ford Australia User Guide Product developed and supported by: Catalogue information provided by: FORD MOTOR COMPANY OF AUSTRALIA LTD Contents Getting started... 2 Microcat MARKET overview...

More information

Moneris ecommerce Guide

Moneris ecommerce Guide Moneris ecommerce Guide (04/16) For more information and assistance: Web: getpayd.com/paydproplus/support Toll-free: 1-855-423-PAYD (7293) Record your Moneris merchant ID here: Contents Welcome to PAYD

More information

OPENTABLE GROUP SEARCH MODULE GETTING STARTED ADD RESERVATIONS TO YOUR WEBSITE

OPENTABLE GROUP SEARCH MODULE GETTING STARTED ADD RESERVATIONS TO YOUR WEBSITE ADD RESERVATIONS TO YOUR WEBSITE OPENTABLE GROUP SEARCH MODULE The group search module allows users to select a specific restaurant location from a list and search tables at that location. The code below

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

MASTERTAG VALUE-ADDED SERVICES FOR ADVERTISERS SET-UP GUIDE

MASTERTAG VALUE-ADDED SERVICES FOR ADVERTISERS SET-UP GUIDE MASTERTAG VALUE-ADDED SERVICES FOR ADVERTISERS SET-UP GUIDE Dear advertiser, The present document gives you an overview of the zanox MasterTag technology. You will receive detailed information on its main

More information

Mail Programming Topics

Mail Programming Topics Mail Programming Topics Contents Introduction 4 Organization of This Document 4 Creating Mail Stationery Bundles 5 Stationery Bundles 5 Description Property List 5 HTML File 6 Images 8 Composite Images

More information

Tagging Guide: Website and Email Implementation. Contents

Tagging Guide: Website and Email Implementation. Contents Tagging Guide: Website and Email Implementation Contents About This Guide... 2 Your CiteID... 2 Website Implementation... 2 Tag Placement... 2 Example... 3 Email Implementation... 5 DNS Setup... 5 Tag

More information

GENERAL ADMINISTRATION - SHOPPING CART

GENERAL ADMINISTRATION - SHOPPING CART GENERAL ADMINISTRATION - SHOPPING CART Document Version 3.0 December 2014 For assistance, please message DRWP Client Services or call 0800 756 3350. Copyright 2014 Beanstream Internet Commerce. All rights

More information

Pay with Amazon Integration Guide

Pay with Amazon Integration Guide 2 2 Contents... 4 Introduction to Pay with Amazon... 5 Before you start - Important Information... 5 Important Advanced Payment APIs prerequisites... 5 How does Pay with Amazon work?...6 Key concepts in

More information

Overview. How It Works

Overview. How It Works Overview Email is a great way to communicate with your alumni and donors. It s agile, it can be interactive, and it has lower overhead than print mail. Our constituents are also becoming more and more

More information

Login with Amazon. Getting Started Guide for Websites. Version 1.0

Login with Amazon. Getting Started Guide for Websites. Version 1.0 Login with Amazon Getting Started Guide for Websites Version 1.0 Login with Amazon: Getting Started Guide for Websites Copyright 2016 Amazon Services, LLC or its affiliates. All rights reserved. Amazon

More information

CA APM Cloud Monitor. Scripting Guide. Release 8.2

CA APM Cloud Monitor. Scripting Guide. Release 8.2 CA APM Cloud Monitor Scripting Guide Release 8.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

MASTERTAG DEVELOPER GUIDE

MASTERTAG DEVELOPER GUIDE MASTERTAG DEVELOPER GUIDE TABLE OF CONTENTS 1 Introduction... 4 1.1 What is the zanox MasterTag?... 4 1.2 What is the zanox page type?... 4 2 Create a MasterTag application in the zanox Application Store...

More information

Microsoft Advertising adcenter Campaign Analytics Getting Started Guide

Microsoft Advertising adcenter Campaign Analytics Getting Started Guide Microsoft Advertising adcenter Campaign Analytics Getting Started Guide Contents Introduction... 3 What is Microsoft Advertising adcenter Campaign Analytics?... 3 Useful terms... 3 Overview... 4 Get Started...

More information

Login and Pay with Amazon Integration Guide

Login and Pay with Amazon Integration Guide Login and Pay with Amazon Integration Guide 2 2 Contents...4 Introduction...5 Important prerequisites...5 How does Login and Pay with Amazon work?... 5 Key concepts...5 Overview of the buyer experience...

More information

Open-Source Shopping Cart Solutions. Installation information for integrating a shopping cart with Checkout by Amazon using open-source solutions

Open-Source Shopping Cart Solutions. Installation information for integrating a shopping cart with Checkout by Amazon using open-source solutions Open-Source Shopping Cart Solutions Installation information for integrating a shopping cart with Checkout by Amazon using open-source solutions 2008-10 Amazon.com, Inc. or its Affiliates Table of Contents

More information

Dell Spotlight on Active Directory 6.8.3. Server Health Wizard Configuration Guide

Dell Spotlight on Active Directory 6.8.3. Server Health Wizard Configuration Guide Dell Spotlight on Active Directory 6.8.3 Server Health Wizard Configuration Guide 2013 Dell Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

CollabraSuite. Developer Guide. Version 7.3.0

CollabraSuite. Developer Guide. Version 7.3.0 CollabraSuite Developer Guide Version 7.3.0 Copyright Copyright 2000-2008 CollabraSpace, Inc. All Rights Reserved. Restricted Rights Legend This software is protected by copyright, and may be protected

More information

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs HTML Form Widgets Review: HTML Forms HTML forms are used to create web pages that accept user input Forms allow the user to communicate information back to the web server Forms allow web servers to generate

More information

United Payment Services My Merchant Console Connect SecurePAY User Guide

United Payment Services My Merchant Console Connect SecurePAY User Guide United Payment Services My Merchant Console Connect SecurePAY User Guide. 1 United Payment Services, Inc ( United Payment Services ) has made efforts to ensure the accuracy and completeness of the information

More information

Tableau Server Trusted Authentication

Tableau Server Trusted Authentication Tableau Server Trusted Authentication When you embed Tableau Server views into webpages, everyone who visits the page must be a licensed user on Tableau Server. When users visit the page they will be prompted

More information

PDG Software. Site Design Guide

PDG Software. Site Design Guide PDG Software Site Design Guide PDG Software, Inc. 1751 Montreal Circle, Suite B Tucker, Georgia 30084-6802 Copyright 1998-2007 PDG Software, Inc.; All rights reserved. PDG Software, Inc. ("PDG Software")

More information

Official Amazon Checkout Extension for Magento Commerce. Documentation

Official Amazon Checkout Extension for Magento Commerce. Documentation Official Amazon Checkout Extension for Magento Commerce Documentation 1. Introduction This extension provides official integration of your Magento store with Inline Checkout by Amazon service. Checkout

More information

Standard Checkout. Button Creation Wizard Implementation Guide. U.S. Version 2014-01-13

Standard Checkout. Button Creation Wizard Implementation Guide. U.S. Version 2014-01-13 Standard Checkout Button Creation Wizard Implementation Guide U.S. Version 2014-01-13 Introduction 2 TOC 3 Contents List of Tables... 5 List of Figures... 7 Overview of Checkout by Amazon...9 Who Should

More information

WIRIS quizzes web services Getting started with PHP and Java

WIRIS quizzes web services Getting started with PHP and Java WIRIS quizzes web services Getting started with PHP and Java Document Release: 1.3 2011 march, Maths for More www.wiris.com Summary This document provides client examples for PHP and Java. Contents WIRIS

More information

Developer Tutorial Version 1. 0 February 2015

Developer Tutorial Version 1. 0 February 2015 Developer Tutorial Version 1. 0 Contents Introduction... 3 What is the Mapzania SDK?... 3 Features of Mapzania SDK... 4 Mapzania Applications... 5 Architecture... 6 Front-end application components...

More information

PDG Shopping Cart 4.0. Quick Start Guide

PDG Shopping Cart 4.0. Quick Start Guide PDG Shopping Cart 4.0 Quick Start Guide , Inc. 1751 Montreal Circle, Suite B Tucker, Georgia 30084-6802 Copyright 1998-2004 PDG Software, Inc.; All rights reserved. PDG Software, Inc. ("PDG Software")

More information

Google AdWords TM Conversion Tracking Guide

Google AdWords TM Conversion Tracking Guide Google AdWords TM Conversion Tracking Guide CONTENTS INTRODUCTION TO CONVERSION TRACKING...2 PRODUCT DESCRIPTION...2 OVERVIEW...2 DEFINITION OF TERMS...3 ADDING THE CODE SNIPPET...4 CONVERSION TRACKING

More information

Clearview Customer Web Access

Clearview Customer Web Access Clearview Customer Web Access This document outlines the Clearview Process flows for Logging in to Customer Web Access Service Listing o Service Order Desktop o Service Tasks o Viewing Service Schedules

More information

Please note: no personal information is stored in cookies and they cannot contain viruses.

Please note: no personal information is stored in cookies and they cannot contain viruses. Tracking Script WHAT IS THE TRACKING SCRIPT USED FOR? The Mojn tracking script is used to track your visitor behaviour. When the script is implemented on your site, a cookie is saved to your visitors browser

More information

Online sales management software Quick store setup. v 1.1.3

Online sales management software Quick store setup. v 1.1.3 Online sales management software Quick store setup v 1.1.3 Table of Contents 1Shopizer urls...3 2Configure your store...3 Store and profile...4 Store Front Configuration...4 3Integration...6 4Configure

More information

Introducing our new Editor: Email Creator

Introducing our new Editor: Email Creator Introducing our new Editor: Email Creator To view a section click on any header below: Creating a Newsletter... 3 Create From Templates... 4 Use Current Templates... 6 Import from File... 7 Import via

More information

Login and Pay with Amazon Automatic Payments Integration Guide

Login and Pay with Amazon Automatic Payments Integration Guide Login and Pay with Amazon Automatic Payments Integration Guide 2 2 Contents... 4 Introduction...5 Important prerequisites...5 How does Login and Pay with Amazon work?... 5 Key concepts...6 Overview of

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Develop OpenID Connect Apps

Dell One Identity Cloud Access Manager 8.0.1 - How to Develop OpenID Connect Apps Dell One Identity Cloud Access Manager 8.0.1 - How to Develop OpenID Connect Apps May 2015 This guide includes: What is OAuth v2.0? What is OpenID Connect? Example: Providing OpenID Connect SSO to a Salesforce.com

More information

Business Portal for Microsoft Dynamics GP. Electronic Document Delivery Release 10.0

Business Portal for Microsoft Dynamics GP. Electronic Document Delivery Release 10.0 Business Portal for Microsoft Dynamics GP Electronic Document Delivery Release 10.0 Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is

More information

Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication

Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Using JQuery to Make a Photo Slideshow This exercise was modified from the slideshow

More information

Create interactive web graphics out of your SAS or R datasets

Create interactive web graphics out of your SAS or R datasets Paper CS07 Create interactive web graphics out of your SAS or R datasets Patrick René Warnat, HMS Analytical Software GmbH, Heidelberg, Germany ABSTRACT Several commercial software products allow the creation

More information

CHARGE Anywhere Universal Shopping Cart

CHARGE Anywhere Universal Shopping Cart CHARGE Anywhere Universal Shopping Cart Version: v1.0.1 Prepared for: CHARGE Anywhere 4041B Hadley Rd South Plainfield, NJ 07080 Phone: + 1 (800)211-1256 Fax: + 1 (732) 417-4448 I. Introduction... 3 II.

More information

InPost UK Limited GeoWidget Integration Guide Version 1.1

InPost UK Limited GeoWidget Integration Guide Version 1.1 InPost UK Limited GeoWidget Integration Guide Version 1.1 Contents 1.0. Introduction... 3 1.0.1. Using this Document... 3 1.0.1.1. Document Purpose... 3 1.0.1.2. Intended Audience... 3 1.0.2. Background...

More information

Selling Digital Goods Online

Selling Digital Goods Online PayLoadz.com Selling Digital Goods Online How to use the PayLoadz and PayPal services to sell digital goods on your web site Updated: 02/12/2006 TABLE OF CONTENTS INTRODUCTION...3 HOW IT WORKS...3 GETTING

More information

Insert/Edit Link: Popup Tab

Insert/Edit Link: Popup Tab Overview Note: The information on this page pertains to the old WYSIWYG Editor. For information about the new JustEdit Editor and the JustEdit toolbar, visit the JustEdit page. The Popup tab of the Insert/Edit

More information

ISI ACADEMY Web applications Programming Diploma using PHP& MySQL

ISI ACADEMY Web applications Programming Diploma using PHP& MySQL ISI ACADEMY for PHP& MySQL web applications Programming ISI ACADEMY Web applications Programming Diploma using PHP& MySQL HTML - CSS - JavaScript PHP - MYSQL What You'll Learn Be able to write, deploy,

More information

Customising Your Mobile Payment Pages

Customising Your Mobile Payment Pages Corporate Gateway Customising Your Mobile Payment Pages V2.0 May 2014 Use this guide to: Understand how to customise your payment pages for mobile and tablet devices XML Direct Integration Guide > Contents

More information

WEEPAY V2 INTEGRATION DOCUMENT (BASIC INTEGRATION)

WEEPAY V2 INTEGRATION DOCUMENT (BASIC INTEGRATION) WEEPAY V2 INTEGRATION DOCUMENT (BASIC INTEGRATION) 1 Confidentiality and Usage This document and all downloadable files from the Weepay site is a property of Weepay Payment Processing Corporation. This

More information

Introduction and Overview. Asbru Ltd. ... Asbru Web Content Management System. Easily & Inexpensively Create, Publish & Manage Your Websites

Introduction and Overview. Asbru Ltd. ... Asbru Web Content Management System. Easily & Inexpensively Create, Publish & Manage Your Websites Asbru Ltd Asbru Ltd wwwasbrusoftcom info@asbrusoftcom Asbru Web Content Easily & Inexpensively Create, Publish & Manage Your Websites 1 September 2010 Version 73 Copyright and Proprietary Information Copyright

More information

Best Practices Guide. A reference guide for merchants who want to set up their websites to use Amazon Payments

Best Practices Guide. A reference guide for merchants who want to set up their websites to use Amazon Payments A reference guide for merchants who want to set up their websites to use Amazon Payments Table of Contents Overview of the Best Practices Guide... 1 What s New in This Document...1 Before You Start...

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

TIBCO Spotfire Automation Services 6.5. User s Manual

TIBCO Spotfire Automation Services 6.5. User s Manual TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Stone Edge Integration Guide

Stone Edge Integration Guide Stone Edge Integration Guide Revised May 25, 2007 Modular Merchant: Terms of Service Modular Merchant Developed by Stepping Stone Media, LLC 30 East Broadway STE 210 Eugene, OR 97401 www.modularmerchant.com

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

Klarna Magento module

Klarna Magento module Klarna Magento module User guide Payment module version: 5.x.+ User guide 1.0 Revision: 1.1 Table of Contents User guide Welcome to Klarna How do you benefit? What is Klarna s offering? Prerequisites Before

More information

Apple Applications > Safari 2008-10-15

Apple Applications > Safari 2008-10-15 Safari User Guide for Web Developers Apple Applications > Safari 2008-10-15 Apple Inc. 2008 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system,

More information

Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration

Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration February 2015 This guide describes how to configure Dell One Identity Cloud Access Manager to communicate with a Dell

More information

Learning Magento Theme Development

Learning Magento Theme Development Learning Magento Theme Development Richard Carter Chapter No. 1 "Introduction to Magento and Magento Themes" In this package, you will find: A Biography of the author of the book A preview chapter from

More information

Abila Fundraising Online. Event Registration Guide

Abila Fundraising Online. Event Registration Guide Abila Fundraising Online 2014 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila product and service names mentioned herein are registered trademarks or

More information

Developing Web Views for VMware vcenter Orchestrator

Developing Web Views for VMware vcenter Orchestrator Developing Web Views for VMware vcenter Orchestrator vcenter Orchestrator 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Saving work in the CMS... 2. Edit an existing page... 2. Create a new page... 4. Create a side bar section... 4

Saving work in the CMS... 2. Edit an existing page... 2. Create a new page... 4. Create a side bar section... 4 CMS Editor How-To Saving work in the CMS... 2 Edit an existing page... 2 Create a new page... 4 Create a side bar section... 4 Upload an image and add to your page... 5 Add an existing image to a Page...

More information

XTM Drupal Connector. A Translation Management Tool Plugin

XTM Drupal Connector. A Translation Management Tool Plugin XTM Drupal Connector A Translation Management Tool Plugin Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Moonfruit. 2. Getting Started With Moonfruit You will begin the set up process through the email you will receive from Moonfruit.

Moonfruit. 2. Getting Started With Moonfruit You will begin the set up process through the email you will receive from Moonfruit. Moonfruit 1. What is Moonfruit In 2010, 30.1 million adults in the UK (60 per cent) accessed the Internet every day or almost every day, highlighting the importance of having a web presence. Moonfruit

More information

Business Portal for Microsoft Dynamics GP. Key Performance Indicators Release 10.0

Business Portal for Microsoft Dynamics GP. Key Performance Indicators Release 10.0 Business Portal for Microsoft Dynamics GP Key Performance Indicators Release 10.0 Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the

More information

MySchoolBucks School Store Guide

MySchoolBucks School Store Guide MySchoolBucks School Store Guide Table of Contents Introduction to MySchoolBucks School Store... 3 Navigating the School Store... 3 Browse All Items... 3 Filtering Items... 4 Finding Featured Items...

More information

Super Resellers // Getting Started Guide. Getting Started Guide. Super Resellers. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1

Super Resellers // Getting Started Guide. Getting Started Guide. Super Resellers. AKJZNAzsqknsxxkjnsjx Getting Started Guide Page 1 Getting Started Guide Super Resellers Getting Started Guide Page 1 Getting Started Guide: Super Resellers Version 2.1 (1.6.2012) Copyright 2012 All rights reserved. Distribution of this work or derivative

More information

Pr oactively Monitoring Response Time and Complex Web Transactions... 1. Working with Partner Organizations... 2

Pr oactively Monitoring Response Time and Complex Web Transactions... 1. Working with Partner Organizations... 2 Pr oactively Monitoring Response Time and Complex Web Transactions... 1 An atomy of Common Web Transactions... 1 Asking for Decisions... 1 Collecting Information... 2 Providing Sensitive Information...

More information

Software API guide (EN) Manuale dei componenti software API (EN) Pag. 1 di 11

Software API guide (EN) Manuale dei componenti software API (EN) Pag. 1 di 11 Sftware API guide (EN) Manuale dei cmpnenti sftware API (EN) Dipartiment Ecnmia e Prmzine della Città - Settre Agenda digitale e tecnlgie infrmatiche piazza Liber Paradisus, 10-40129 Blgna e-mail pendata@cmune.blgna.it

More information

Altru Masters Workshop Creating the Best Online Experience for your Patrons Part 1: Online Basics

Altru Masters Workshop Creating the Best Online Experience for your Patrons Part 1: Online Basics Altru Masters Workshop Creating the Best Online Experience for your Patrons Part 1: Online Basics Agenda Review Online Sales Settings Explore Web Tools to enhance the overall look and feel of web forms

More information

Example. Represent this as XML

Example. Represent this as XML Example INF 221 program class INF 133 quiz Assignment Represent this as XML JSON There is not an absolutely correct answer to how to interpret this tree in the respective languages. There are multiple

More information

2013 Retailer ecommerce Study

2013 Retailer ecommerce Study 2013 Retailer ecommerce Study shopatron.com Executive Summary The retail industry has changed significantly over the last decade, and it is continuing to evolve. As a veteran technology provider in the

More information

Traitware Authentication Service Integration Document

Traitware Authentication Service Integration Document Traitware Authentication Service Integration Document February 2015 V1.1 Secure and simplify your digital life. Integrating Traitware Authentication This document covers the steps to integrate Traitware

More information

Salesforce Integration Guide

Salesforce Integration Guide Salesforce Integration Guide Salesforce Integration Guide Document Publication Date: October 14, 2011 Copyright 2009-2011 BroadVision, Inc., 1600 Seaport Boulevard, Suite 550, North Building, Redwood City,

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

CNET Builder.com - Business - Charge It! How to Process Online Credit Card Transactions Page 1 of 10

CNET Builder.com - Business - Charge It! How to Process Online Credit Card Transactions Page 1 of 10 CNET Builder.com - Business - Charge It! How to Process Online Credit Card Transactions Page 1 of 10 Kevin Hakman and Uwe Druckenmueller (4/6/00) Point, click, buy. Pack, ship, get the money. You want

More information

jquery Sliding Image Gallery

jquery Sliding Image Gallery jquery Sliding Image Gallery Copyright 2011 FlashBlue Website : http://www.flashdo.com Email: flashblue80@hotmail.com Twitter: http://twitter.com/flashblue80 Directories source - Original source files

More information

Business Portal for Microsoft Dynamics GP. Requisition Management User s Guide Release 10.0

Business Portal for Microsoft Dynamics GP. Requisition Management User s Guide Release 10.0 Business Portal for Microsoft Dynamics GP Requisition Management User s Guide Release 10.0 Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws

More information

Slide.Show Quick Start Guide

Slide.Show Quick Start Guide Slide.Show Quick Start Guide Vertigo Software December 2007 Contents Introduction... 1 Your first slideshow with Slide.Show... 1 Step 1: Embed the control... 2 Step 2: Configure the control... 3 Step 3:

More information

CUSTOMER+ PURL Manager

CUSTOMER+ PURL Manager CUSTOMER+ PURL Manager October, 2009 CUSTOMER+ v. 5.3.1 Section I: Creating the PURL 1. Go to Administration > PURL Management > PURLs 2. Click Add Personalized URL 3. In the Edit PURL screen, Name your

More information

Hitachi PaybyFinance Magento Plugin

Hitachi PaybyFinance Magento Plugin Hitachi PaybyFinance Magento Plugin Installation Instructions v1.0 H e a l t h y W e b s i t e s 2 0 1 5 0 1 4 1 2 4 9 0 6 4 1 a l i s t a i r @ h e a l t h y w e b s i t e s. c o. u k w w w. h e a l t

More information

v7.1 SP2 What s New Guide

v7.1 SP2 What s New Guide v7.1 SP2 What s New Guide Copyright 2012 Sage Technologies Limited, publisher of this work. All rights reserved. No part of this documentation may be copied, photocopied, reproduced, translated, microfilmed,

More information

Form Handling. Server-side Web Development and Programming. Form Handling. Server Page Model. Form data appended to request string

Form Handling. Server-side Web Development and Programming. Form Handling. Server Page Model. Form data appended to request string Form Handling Server-side Web Development and Programming Lecture 3: Introduction to Java Server Pages Form data appended to request string

More information

Price Lists v6.16. Product Pricing for Customers and Shopping Basket Discounts

Price Lists v6.16. Product Pricing for Customers and Shopping Basket Discounts Price Lists v6.16 Product Pricing for Customers and Shopping Basket Discounts ecorner Pty Ltd Australia Free Call: 1800 033 845 New Zealand: 0800 501 017 International: +61 2 9494 0200 Email: info@ecorner.com.au

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

More information

Object Level Authentication

Object Level Authentication Toad Intelligence Central Version 2.5 New in This Release Wednesday, 4 March 2015 New features in this release of Toad Intelligence Central: Object level authentication - Where authentication is required

More information

formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual

formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual formerly Help Desk Authority 9.1.2 Quest Free Network Tools User Manual 2 Contacting Quest Software Email: Mail: Web site: info@quest.com Quest Software, Inc. World Headquarters 5 Polaris Way Aliso Viejo,

More information

IMRG Peermap API Documentation V 5.0

IMRG Peermap API Documentation V 5.0 IMRG Peermap API Documentation V 5.0 An Introduction to the IMRG Peermap Service... 2 Using a Tag Manager... 2 Inserting your Unique API Key within the Script... 2 The JavaScript Snippet... 3 Adding the

More information

MAGPOWR Spyder Firmware Update Instruction Manual

MAGPOWR Spyder Firmware Update Instruction Manual MAGPOWR TENSION CONTROL MAGPOWR Spyder Firmware Update Instruction Manual EN Spyder and Spyder-Plus MI 850A324 B COPYRIGHT All of the information herein is the exclusive proprietary property of Maxcess

More information

MASTERPASS MERCHANT ONBOARDING & INTEGRATION GUIDE

MASTERPASS MERCHANT ONBOARDING & INTEGRATION GUIDE MASTERPASS MERCHANT ONBOARDING & INTEGRATION GUIDE VERSION 6.1, AS OF DECEMBER 5, 2014 Notices Proprietary Rights The information contained in this document is proprietary and confidential to MasterCard

More information

Ad-hoc Reporting Report Designer

Ad-hoc Reporting Report Designer Ad-hoc Reporting Report Designer AD- H O C R E P O R T D E S I G N E R M A N U A L 2012 NonProfit Technologies, Inc. All Rights Reserved. This document contains proprietary information which is protected

More information

Flexible Virtuemart 2 Template CleanMart (for VM2.0.x only) TUTORIAL. INSTALLATION CleanMart VM 2 Template (in 3 steps):

Flexible Virtuemart 2 Template CleanMart (for VM2.0.x only) TUTORIAL. INSTALLATION CleanMart VM 2 Template (in 3 steps): // Flexible Virtuemart VM2 Template CleanMart FOR VIRTUEMART 2.0.x (ONLY) // version 1.0 // author Flexible Web Design Team // copyright (C) 2011- flexiblewebdesign.com // license GNU/GPLv3 http://www.gnu.org/licenses/gpl-

More information

NWBC10 NetWeaver Business Client

NWBC10 NetWeaver Business Client NetWeaver Business Client SAP NetWeaver Course Version: 96 Course Duration: 1 Day(s) Publication Date: 2015 Publication Time: Copyright Copyright SAP SE. All rights reserved. No part of this publication

More information

Title Page. Hosted Payment Page Guide ACI Commerce Gateway

Title Page. Hosted Payment Page Guide ACI Commerce Gateway Title Page Hosted Payment Page Guide ACI Commerce Gateway Copyright Information 2008 by All rights reserved. All information contained in this documentation, as well as the software described in it, is

More information

PointCentral Subscription Agreement v.9.2

PointCentral Subscription Agreement v.9.2 PointCentral Subscription Agreement v.9.2 READ THIS SUBSCRIPTION AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE INSTALLING THIS SOFTWARE. THIS AGREEMENT, BETWEEN CALYX TECHNOLOGY, INC., DBA CALYX SOFTWARE (

More information

Advertise Bill Me Later financing on your ebay store

Advertise Bill Me Later financing on your ebay store Advertise Bill Me Later financing on your ebay store Thanks for your interest in displaying Bill Me Later banner ads on your ebay store. These ads let your customers know that they can take advantage of

More information

LexisNexis Publisher Quick Reference Guide

LexisNexis Publisher Quick Reference Guide LexisNexis Publisher Quick Reference Guide Copyright Copyright LexisNexis, the Knowledge Burst logo, and lexis.com are registered trademarks, and LexisNexis SmartIndexing Technology is a trademark of Reed

More information

Adeptia Suite LDAP Integration Guide

Adeptia Suite LDAP Integration Guide Adeptia Suite LDAP Integration Guide Version 6.2 Release Date February 24, 2015 343 West Erie, Suite 440 Chicago, IL 60654, USA Phone: (312) 229-1727 x111 Fax: (312) 229-1736 DOCUMENT INFORMATION Adeptia

More information

Click-To-Talk. ZyXEL IP PBX License IP PBX LOGIN DETAILS. Edition 1, 07/2009. LAN IP: https://192.168.1.12 WAN IP: https://172.16.1.1.

Click-To-Talk. ZyXEL IP PBX License IP PBX LOGIN DETAILS. Edition 1, 07/2009. LAN IP: https://192.168.1.12 WAN IP: https://172.16.1.1. Click-To-Talk ZyXEL IP PBX License Edition 1, 07/2009 IP PBX LOGIN DETAILS LAN IP: https://192.168.1.12 WAN IP: https://172.16.1.1 Username: admin Password: 1234 www.zyxel.com Copyright 2009 ZyXEL Communications

More information

DIGIPASS CertiID. Getting Started 3.1.0

DIGIPASS CertiID. Getting Started 3.1.0 DIGIPASS CertiID Getting Started 3.1.0 Disclaimer Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis, without any other warranties, or conditions, express

More information

Shop builder User s Guide. -www.shopbuilder.com.au

Shop builder User s Guide. -www.shopbuilder.com.au User s Guide -www.shopbuilder.com.au Contents About Shop builder 3 Build online store 3 Step 1 - Design your online store 5 Step 2 - Add content to your online store 8 Step 3 - Add categories to your online

More information

Understanding the Basic Template Editor

Understanding the Basic Template Editor Understanding the Basic Template Editor The basic template editor in Sage E-marketing for Sage CRM is designed for customers that have limited HTML design experience, but would like to customize their

More information