Merchant Tracking Code Guide

Size: px
Start display at page:

Download "Merchant Tracking Code Guide"

Transcription

1 Merchant Tracking Code Guide October 2008

2 Contents 1. Introduction Data Protection Act Activation All pages Which tracking code should I use? Standard Tracking Integration Explanation of the Parameter Values Commission Groups Integration Recording Product Groups Referencing Product Groups Transmitting Product Groups Click Append Test your setup Tracking code to put on confirmation of sale page Examples

3 1. Introduction The Affiliate Window tracking technology works by the use of persistant cookies (these are text files that contain small pieces of information) that are stored on the visitor s computer. When a visitor clicks on an affiliate link, they are redirected through to the merchant's site. The cookie stores information about the click such as the time of the click and which affiliate referred the visitor. In addition to this third party cookie the javascript code attempts to set a first party cookie which is less likely to be blocked. These cookies remain active until they expire. To record transaction data we require a small amount of code to be implemented onto your sale confirmation page. This code sends transaction data back to Affiliate Window and using the cookie data we assign the correct affiliate commissions. 3

4 2. Data Protection Act AWin Analytics will enable you to understand much more about your Affiliate Window Programme and will help us both to identify and implement improvements. You are aware we capture a great deal of data about affiliate and consumer visits to your site (notwithstanding that the data is anonymous). AWin Analytics will enable you to use this data in a sophisticated manner, key analysis features include Find affiliate traffic hot spots Determine the time spent on each page Identify successful and unsuccessful customer journeys Discover fall out and exit pages Know the strengths of your programme Pinpoint areas in need of improvement Providing this information will enable you to streamline your website and increase sales from the visits generated by your affiliate programme. Our statutory responsibilities as set out in the Data Protection Act 1998 are taken very seriously. All the data obtained will be processed in accordance with the principles of data protection. We are also conscious of the commercial sensitivity of this data and (in addition to our statutory duties under the Data Protection Act) we undertake only to share this data with you and to destroy or delete the data as soon as it is no longer needed. We will make internal use of the data that the Affiliate Window Analytics Solution makes available to us. The data will allow us to learn more about programme performance and in particular make sector by sector comparisons. Merchant data is identified by code and not by name and is only processed with your permission. If, at anytime, you wish to stop analysing your affiliate programme through the Awin Analytics Solution please let us know in writing. Yours faithfully, Adam Ross Client Services Director 4

5 3. Activation At this stage, you will have to be specifically enabled for the tracking code to work, so please contact Technical Services before trying to implement it. After being enabled, all the redirects from AWIN to your site will contain the additional awc parameter. If you are using URL rewriting on your site, you will need to ensure that your rewrite rules are compatible with the new tracking. We find this is commonly used for custom landing pages where you might provide the affiliate with a URL similar in format to the following This redirects to You will need to ensure that the query string is passed through the redirection, so Will redirect to 8c0e40 4. All pages Insert the following line just before the closing </BODY> tag, on each page of your site: (Please keep as a single line) Replace the MERCHANT_ID placeholder, with your own AWIN merchant id. <script src=" type="text/javascript" defer="defer"></script> 5

6 5. Which tracking code should I use? If you wish to pay your affiliates a set amount for every transaction then see the Standard Tracking Integration section. If you wish to pay your affiliates a percentage of the transaction amount then see the Standard Tracking Integration section. If you wish to pay your affiliates a set amount of commission and you would like that set amount to be different depending on which group of products have been bought then see the Commission Groups Integration section. If you wish to pay your affiliates a percentage of the transaction value and you would like that percentage to be different depending on which group of products have been bought then see the Commission Groups Integration section. In addition you can see clear visibility over the products which are being bought through your affiliate programme by implementing the Product-level Tracking. 6

7 6. Standard Tracking Integration The standard tracking code needs to be added to the thank you or confirmation of sale page on your site. Passed in to this code are your merchant ID and other variables. Note: The tracking code must send Affiliate Window the sale amount in Pounds Sterling and not include the Pound symbol ( ). For example: Sale= On the final page of this document you will find the full JavaScript tracking code example. Below are excerpts from this code that you will need to add information to. These are the only parts of the code that you need to parse in values. Noscript Tracking Code (back-up to the JavaScript): <img src= R_REF&parts=COMMISSION_GROUP:SALE_AMOUNT&vc=VOUCHER_CODE&testmode=1 /> Product Level Tracking Code (optional): <form style="display:none;" name="aw_basket_form"> <textarea wrap="physical" id="aw_basket"> AW:P [merchant_id] [order_ref] [product_id] [product_name] [unit_price] [quantity] [sku_data] [cg] [category] AW:P [merchant_id] [order_ref] [product_id] [product_name] [unit_price] [quantity] [sku_data] [cg] [category] AW:P [merchant_id] [order_ref] [product_id] [product_name] [unit_price] [quantity] [sku_data] [cg] [category] </textarea> </form> JavaScript Tracking Code: <script type="text/javascript"> //<![CDATA[ /*** Do not change ***/ var AWIN = {}; AWIN.Tracking = {}; AWIN.Tracking.Sale = {}; /*** Set your transaction parameters ***/ AWIN.Tracking.Sale.amount = 'SALE_AMOUNT'; AWIN.Tracking.Sale.currency = 'GBP'; AWIN.Tracking.Sale.orderRef = 'ORDER_REF'; AWIN.Tracking.Sale.parts = 'COMMISSION_GROUP:SALE_AMOUNT'; AWIN.Tracking.Sale.voucher = 'VOUCHER_CODE'; AWIN.Tracking.Sale.test = '1'; //]]> </script> <script src=" type="text/javascript" defer="defer"></script> 7

8 7. Explanation of the Parameter Values Tracking Variables MERCHANT Replace this with your Affiliate Window merchant id. SALE_AMOUNT Replace this with the transaction value (without sign). This should be the variable in your shopping cart software representing the order amount. Our software will calculate the commission based on this amount. If you are paying a set amount per transaction then you can pass us sale=1.00. ORDER_REF Replace this with the order reference for the transaction from your system. This will help identify that the commission is legitimate. Make sure this is a unique reference, for instance an order number or a registration number. This should be the variable in your shopping cart representing the order reference number. COMMISSION_GROUP:SALE_AMOUNT The parts information is used when offering commission groups/structure. If you are not using commission groups then pass us in the parts parameter 'default:amount' where 'amount' is the value of the transaction in the 'sale' parameter. TEST_MODE Add 1 if you are testing the tracking code alongside other Affiliate Window tracking code. When you are happy that the code is correct and tracking correctly this can be changed to 0. VOUCHER_CODE The voucher or discount code used at purchase can be parsed in to the tracking code. This allows you to see the voucher codes that affiliates are using to promote. CURRENCY For the moment we only accept GBP within the currency variable, we will for future development be extending this to other currencies and we ll be in touch when this variable active to use. If you do you other currencies please ensure the sale value is converted to GBP to ensure that affiliates are paid the correct commissions. 8

9 Product Level Tracking Variables PRODUCT_ID The merchant s unique ID for this specific product PRODUCT_NAME The merchant s product name for this specific product UNIT_PRICE The merchant s price of that product QUANTITY This is the quantity of this product that has been ordered within this transaction SKU_DATA this is optional Add in the SKU/MPN or EAN of this product into this area of the product level tracking. CG Add the Commission group in which this ties into for AW system. This could be DEFAULT/CDs or DVDs depending on how you ve setup the commission groups here at AW. CATEGORY this is optional This is the category in which the product is categorised on the merchant site. 9

10 8. Commission Groups Integration The Commission Groups feature offers extra functionality to merchants who wish to have precise control over their commission levels. Allows a merchant to offer variable rates of commission on different groups of products in their product range. Allows the introduction of performance-based criteria per product, to give an incentive to affiliates to promote a certain sector of your business. The ability to add recurring bonuses for affiliates. Ability to add private commissions for top performing affiliates. Ability for the system to automatically increase affiliates daily, to the next level when they achieve the set target Recording Product Groups Depending on how you define your groups, your database will need to be amended so that it holds a record of the mappings between your products or categories and the product groups you have defined within our system. If there is a direct correlation between your product categories and product groups then this process will be fairly simple. Once product groups have been decided upon, these need to be added to your systems and mappings applied Referencing Product Groups Your sales confirmation page will need to be able to determine the product group for each product contained in the customers shopping cart (if one has been assigned). This information can either be retrieved from your database by your sales confirmation page or retrieved as the customer shops, and stored in the cart. The important thing here is that the confirmation page has access to this product group information. 10

11 8.4. Transmitting Product Groups Please refer to section 3 of this document for instructions on adding the tracking code. In addition to section 3 the following must be added in to the tracking code. Your sales confirmation page will need to calculate totals for each group that has contributed to the shopping cart. This data will then need to be concatenated to form the value to be sent in the parts parameter, i.e.: 'DEFAULT:9.75 CD:22.34 DVD:46.98' If the sale comprises of more than one group, then the group/value pairs must be separated by a pipe character. The parts value then needs to be placed in the JavaScript tracking code and the pixel tracking code like below: JavaScript Tracking Code: AWIN.Tracking.Sale.parts = 'DEFAULT:9.75 CD:22.34 DVD:46.98'; Noscript Tracking Code: <img src= R_REF&parts=DEFAULT:9.75 CD:22.34 DVD:46.98&vc=VOUCHER_CODE&testmode=1 /> The value of the parts parameter is specified as the group code followed by a colon : followed by the value of the goods sold in that group. For example, if a customer has purchased 100 of goods comprising of 50 of DVDs and 50 of Videos then the following would be used to call the logging script image; JavaScript tracking code: AWIN.Tracking.Sale.parts = 'dvd:50.00 video:50.00'; Noscript tracking code: <img src= ;ref=order_ref&parts=dvd:50.00 VIDIO:50.00&vc=VOUCHER_CODE&testmode=1 /> For commission to be calculated correctly for this transaction the Commission Group codes dvd and video, must have been created within your merchant account. 11

12 The total sale amount being parsed in the sale variable should add up to the total of the parts. If it is not, the commission group sales will be ignored and commission will be applied at the default rate. Note: The tracking code must send Affiliate Window the sale amount in Pounds Sterling. Note: This section is a brief guide to integrating commission structure. If you need information on the functionality and how to use the system then please request the Commission Structure Guide from the support team, your contact or documentation available in your merchant account. Please see the examples pages at the end of this document for an example of the full tracking code for a commission group sale. 12

13 9. Click Append Note: Enabling the tracking code to only display when the visitor has been referred by an AW affiliate. Affiliate Window has the technology to pass a value to the end of any URL an affiliate uses to send traffic through to a merchants website. This is called a Click Append. The Click Append can be used by the merchant in several different ways. For example: To track that a sale has come through from Affiliate Window and tag it so the merchant knows where the sale has come from. To enable the AW tracking code to only display when an AW affiliate has referrer the customer. This is useful if a merchant is using multiple Affiliate Networks. This system will reduce the possibility of sales being tracked by the other networks involved as well as AW. This is dependent on the other networks putting a similar solution in place. If you wish to use this functionality then please request the Click Append guide from the Technical Services team or your personal contact. 10. Test your setup Once you have the confirmation page code setup on the site and you want to test that all is working correctly, please contact the Technical Services team and ask them to put you in to test mode. 13

14 11. Tracking code to put on confirmation of sale page See sections 3 and 4 on how and what information to parse in to this code. <img src=" ER_REF&parts=COMMISSION_GROUP:SALE_AMOUNT&vc=VOUCHER_CODE&testmode=1" /> <form style="display:none;" name="aw_basket_form"> <textarea wrap="physical" id="aw_basket"> AW:P [merchant_id] [order_ref] [product_id] [product_name] [unit_price] [quantity] [sku_data] [cg] [category] AW:P [merchant_id] [order_ref] [product_id] [product_name] [unit_price] [quantity] [sku_data] [cg] [category] AW:P [merchant_id] [order_ref] [product_id] [product_name] [unit_price] [quantity] [sku_data] [cg] [category] </textarea> </form> <script type="text/javascript"> //<![CDATA[ /*** Do not change ***/ var AWIN = {}; AWIN.Tracking = {}; AWIN.Tracking.Sale = {}; /*** Set your transaction parameters ***/ AWIN.Tracking.Sale.amount = 'SALE_AMOUNT'; AWIN.Tracking.Sale.currency = 'GBP'; AWIN.Tracking.Sale.orderRef = 'ORDER_REF'; AWIN.Tracking.Sale.parts = 'COMMISSION_GROUP:SALE_AMOUNT'; AWIN.Tracking.Sale.voucher = 'VOUCHER_CODE'; AWIN.Tracking.Sale.test = '1'; //]]> </script> <script src=" type="text/javascript" defer="defer"></script> 14

15 8.1. Examples Standard Tracking Code: See below an example of the standard integration tracking code for a sale value of for merchant number 1234 with an order number of and a voucher code of AW1234. <img src=" s=default:10.00&vc=discount1&testmode=1" /> <form style="display:none;" name="aw_basket_form"> <textarea wrap="physical" id="aw_basket"> AW:P 1234 ref T-SHIRT SKU: DEFAULT SHIRT </textarea> </form> <script type="text/javascript"> //<![CDATA[ /*** Do not change ***/ var AWIN = {}; AWIN.Tracking = {}; AWIN.Tracking.Sale = {}; /*** Set your transaction parameters ***/ AWIN.Tracking.Sale.amount = '10.00'; AWIN.Tracking.Sale.currency = 'GBP'; AWIN.Tracking.Sale.orderRef = 'ref1111'; AWIN.Tracking.Sale.parts = 'DEFAULT:10.00'; AWIN.Tracking.Sale.voucher = 'DISCOUNT1'; AWIN.Tracking.Sale.test = '1'; //]]> </script> <script src=" type="text/javascript" defer="defer"></script> 15

16 Commission Group Tracking Code: See below an example of the commission group tracking code for a sale value of for merchant number 1234 with an order number of The order contains products in 4 groups: DVD, Video, CD & Books and the customer spent 25 on products from each group. A voucher code of AW1234 was also used in this example. <img src=" s= DVD:25.00 video:25.00 CD:25.00 books:25.00&vc=aw1234&testmode=1" /> <form style="display:none;" name="aw_basket_form"> <textarea wrap="physical" id="aw_basket"> AW:P PRODUCT1 DVD sku:11111 DVD KIDS DVDS AW:P PRODUCT2 VIDEO sku:11111 VIDEO KIDS VIDEO AW:P PRODUCT3 CD sku:11111 CD ROCK CD AW:P PRODUCT4 BOOK sku:11111 BOOKS ROMANCE BOOK </textarea> </form> <script type="text/javascript"> //<![CDATA[ /*** Do not change ***/ var AWIN = {}; AWIN.Tracking = {}; AWIN.Tracking.Sale = {}; /*** Set your transaction parameters ***/ AWIN.Tracking.Sale.amount = '100.00'; AWIN.Tracking.Sale.currency = 'GBP'; AWIN.Tracking.Sale.orderRef = '123456'; AWIN.Tracking.Sale.parts = 'DVD:25.00 video:25.00 CD:25.00 books:25.00'; AWIN.Tracking.Sale.voucher = 'AW1234'; AWIN.Tracking.Sale.test = '1'; //]]> </script> <script src=" type="text/javascript" defer="defer"></script> <!-- *** End of Affiliate Window tracking code - DO NOT REMOVE *** / --> 16

Purchase Tracking Web Service. Technical Documentation. Document Version 1.6

Purchase Tracking Web Service. Technical Documentation. Document Version 1.6 Purchase Tracking Web Service Technical Documentation Document Version 1.6 Revision date 02/28/2014 2 1 Overview The PriceSpider Where-to-Buy (WTB) is an online and local retailer locator. Manufacturers

More information

Implementation Guide. The essentials

Implementation Guide. The essentials Implementation Guide The essentials Hello! I am Romain, and I ll be your guide explaining the essential steps of the Nosto implementation! Follow the 7-key steps below and we will get your store live with

More information

Overture Advertiser Workbook. Chapter 4: Tracking Your Results

Overture Advertiser Workbook. Chapter 4: Tracking Your Results Overture Advertiser Workbook Chapter 4: Tracking Your Results Tracking Your Results TRACKING YOUR RESULTS Tracking the performance of your keywords enables you to effectively analyze your results, adjust

More information

X-Affiliate add-on module for X-Cart 4.2.0

X-Affiliate add-on module for X-Cart 4.2.0 X-Affiliate add-on module for X-Cart 4.2.0 Partner area User Manual Company website: www.x-cart.com Revision date: Dec/10/2008 X-Affiliate add-on module for X-Cart 4.2.0 Partner area User Manual This manual

More information

Holiday Autos Affiliate Program Terms & Conditions

Holiday Autos Affiliate Program Terms & Conditions Holiday Autos Affiliate Program Terms & Conditions Key Information Action Description Validation Criteria Validation Period Cookie Period Commission Structure De-Duplication Policy A completed Sale Bookings

More information

LeaseYourNextCar.com Affiliate Program Terms & Conditions

LeaseYourNextCar.com Affiliate Program Terms & Conditions LeaseYourNextCar.com Affiliate Program Terms & Conditions Key Information Action Description Validation Criteria Validation Period Cookie Period Commission Structure De-Duplication Policy A completed order

More information

X-AFFILIATE module for X-Cart 4.0.x

X-AFFILIATE module for X-Cart 4.0.x X-AFFILIATE module for X-Cart 4.0.x Partner Interface Reference Manual Revision Date: 2004-11-22 Copyright 2001-2004 Ruslan R. Fazliev. All rights reserved. TABLE OF CONTENTS GENERAL INFORMATION...3 REGISTRATION...4

More information

WELCOME TO STEELHOUSE NEW CLIENT QUICK START GUIDE

WELCOME TO STEELHOUSE NEW CLIENT QUICK START GUIDE WELCOME TO STEELHOUSE NEW CLIENT QUICK START GUIDE STEELHOUSE QUICK START GUIDE Follow us along the path to higher conversion 3 New Client Checklist 4 What You Need to Know 5 What Your Engineers Need to

More information

Using Google Analytics within Cvent

Using Google Analytics within Cvent Using Google Analytics within Cvent MARCH 2017 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Access Resources Submit Your Questions Sign Up for Training Contents Using Google

More information

VISITOR SEGMENTATION

VISITOR SEGMENTATION support@magestore.com sales@magestore.com Phone: 084.4.8585.4587 VISITOR SEGMENTATION USER GUIDE Version 1.0.0 Table of Contents 1. INTRODUCTION... 3 Create unlimited visitor segments... 3 Show targeted

More information

Analytics: measuring web site success. MBA 563 Week 3

Analytics: measuring web site success. MBA 563 Week 3 Analytics: measuring web site success MBA 563 Week 3 You can t manage what you can t measure (Bob Napier, ex CIO, Hewlett Packard) FOCUS ON WEBSITE ANALYTICS Website Analytics Onsite analytics Web site

More information

FAQ S MOBILIDIY FULL FAQ S

FAQ S MOBILIDIY FULL FAQ S FAQ S General Overview and ROI What is Mobilidiy? MobiliD-I-Y (Mobile Do-it-Yourself) is a service that makes your businesses easily available to mobile users with a fast and easy mobile website. Millions

More information

Communicator. Conversion Tracking Implementation Guide February Conversion Tracking Implementation Guide

Communicator. Conversion Tracking Implementation Guide February Conversion Tracking Implementation Guide Conversion Tracking Implementation Guide Communicator Conversion Tracking Implementation Guide Version 1.0 A guide to implementing conversion tracking on your website covering a standard setup as well

More information

Connecting VirtueMart To PayPal (Live)

Connecting VirtueMart To PayPal (Live) Connecting VirtueMart To PayPal (Live) After testing is complete in the PayPal Sandbox and you are satisfied all is well, then its time to disconnect VirtueMart from the PayPal Sandbox and connect Virtuemart

More information

What personal data we collect and why we collect it

What personal data we collect and why we collect it Who we are Jinny Beyer Studio is a two-story shop located in Great Falls, Virginia. We also have a mailorder business run through our website. Our website address is: https://jinnybeyer.com. What personal

More information

1 Daniel Web-Builders and Marketing cc MLM WEB DESIGN Multi Level Marketing Or call: +2776 384 7379 / 081 549 9250 We offer 04 different MLM website programs (Level 1) to increase SALES The price includes:

More information

All About Catalog. Contents. West Virginia University Information Technology Services. ecommerce End User Advanced Guide

All About Catalog. Contents. West Virginia University Information Technology Services. ecommerce End User Advanced Guide Contents All About Catalog Browse...2 Add a Product...5 Basic Info...5 Display Options...6 Taxes & Shipping...6 Inventory Control...7 Descriptions...8 Left Side Menu...9 Product Details...9 Images and

More information

Receive Jobs Technical Integration

Receive Jobs Technical Integration Receive Jobs Technical Integration Version 1.3 Jobg8 Limited Version 1.3 1 Document Version History Date Version Description Author 23 Sept 2013 1.0 Initial version Brad O Connor 18 Feb 2014 1.1 Added

More information

Google Analytics. powerful simplicity, practical insight

Google Analytics. powerful simplicity, practical insight Google Analytics powerful simplicity, practical insight 1 Overview Google Analytics Improve your site and increase marketing ROI Free, hosted web analytics service View over 80+ reports online, for download,

More information

PHPBasket 4 Administrator Documentation

PHPBasket 4 Administrator Documentation PHPBasket 4 Please ensure you have the latest version of this document from http://www.phpbasket.com Contents CONTENTS 2 REQUIREMENTS 3 INSTALLATION 4 PREPARATION 4 UPLOAD 4 INSTALLATION 4 ADMINISTRATOR

More information

Affiliate Program. Powered by. What you will find in this Advertiser Checklist: The Advertiser Checklist

Affiliate Program. Powered by. What you will find in this Advertiser Checklist: The Advertiser Checklist Affiliate Program Powered by What you will find in this Advertiser Checklist: Action plan for getting started Details outlining the 5 steps necessary for setting up your account Help Center information

More information

C HAPTER F OUR F OCUS ON THE D ATABASE S TORE

C HAPTER F OUR F OCUS ON THE D ATABASE S TORE C HAPTER F OUR F OCUS ON THE D ATABASE S TORE The Database store generates product pages dynamically from an ASCII text file (flatfile) that contains a pipe-delimited database. The Database store has several

More information

If you have any queries or feedback, please contact

If you have any queries or feedback, please contact If you re keen to start making money from your website or want to increase your income, you might be interested in getting started with affiliate marketing. A content- based site will often recommend products

More information

Do-It-Yourself Guide for Advertisers

Do-It-Yourself Guide for Advertisers Do-It-Yourself Guide for Advertisers Foreword Affinity's Advertiser DIY Guide is intended to provide Advertisers with helpful insights on how to best run their ad campaigns on the Affinity Ad Platform.

More information

Matalan Affiliate Program Terms & Conditions

Matalan Affiliate Program Terms & Conditions Matalan Affiliate Program Terms & Conditions Key Information Action Description Validation Criteria A confirmed sale Confirmed and non-returned purchases will be validated after Matalan s 28 day return

More information

All in One Affiliate System

All in One Affiliate System 1 Daniel Web-Builders and Marketing cc MLM WEB DESIGN Multi Level Marketing Or call: +2776 384 7379 / 081 549 9250 We offer the following MLM website program (Level 1) to increase SALES in your company.

More information

Basic & Pro Resellers

Basic & Pro Resellers Getting Started Guide Basic & Pro Resellers Getting Started Guide Page 1 Getting Started Guide: Basic & Pro Resellers Version 2.2 (1.6.2012) Copyright 2012 All rights reserved. Distribution of this work

More information

Inline Checkout Implementation Guide

Inline Checkout Implementation Guide Inline Checkout Implementation Guide 2 Checkout by Amazon TOC Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Standard Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

Analytics: measuring web site success. MBA 563 Week 4

Analytics: measuring web site success. MBA 563 Week 4 Analytics: measuring web site success MBA 563 Week 4 Overview: Methods of measuring marketing success You can t manage what you can t measure (Bob Napier, ex CIO, Hewlett Packard) 1. Data mining and predictive

More information

Checkout by Amazon Widget Reference Guide - Inline Checkout

Checkout by Amazon Widget Reference Guide - Inline Checkout Checkout by Amazon Widget Reference Guide - Inline Checkout TOC 2 Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

How to create your ready made list building affiliate campaign.

How to create your ready made list building affiliate campaign. How to create your ready made list building affiliate campaign. Step #1 - Your Autoresponder Account: First you're going to need an autoresponder account if you don't already have one. I recommend either

More information

All-In-One-Designer Promotion Handbook. Promotion

All-In-One-Designer Promotion Handbook. Promotion All-In-One-Designer Promotion Handbook Promotion Introduction Promotions have been a stable sales strategy in retail since, well the beginning of time. Some say that it started with the Mesopotamian tribes

More information

Benefit from Avira being an Affiliate Partner!

Benefit from Avira being an Affiliate Partner! Benefit from Avira being an Affiliate Partner! Register at element5 as an affiliate partner and make your own money. element5 is in charge of the order, of handling payments and furthermore processes your

More information

IM Cloud Marketplace. Cloud Store Guide

IM Cloud Marketplace. Cloud Store Guide IM Cloud Marketplace Cloud Store Guide Contents Preface... 7 Documentation Conventions... 7 Typographical Conventions... 7 General Conventions... 8 Feedback... 8 Introduction... 9 System Requirements...

More information

Inclusions. Your Package Inclusions & Conditions.

Inclusions. Your Package Inclusions & Conditions. Inclusions Your Package Inclusions & Conditions SHOPPING CART WEBSITE You have purchased a fully functional website that has been built using the Woo Commerce Cart plugin on the Word Press platform. Word

More information

1. Foot Locker UK Affiliate Program Terms & Conditions

1. Foot Locker UK Affiliate Program Terms & Conditions 1. Foot Locker UK Affiliate Program Terms & Conditions Key Information Action Description Validation Criteria Validation Period Cookie Period Commission Structure De-Duplication Policy A completed sale

More information

General Settings General Settings Settings

General Settings General Settings Settings Contents General Settings... 3 Payment Methods... 31 Currency Management... 35 Sales Tax... 37 Commission Settings... 40 Affiliate Commission Settings... 43 Email Templates Management... 46 Subscription

More information

Checkout by Amazon Widget Reference Guide - Inline Checkout

Checkout by Amazon Widget Reference Guide - Inline Checkout Checkout by Amazon Widget Reference Guide - Inline Checkout 2 Checkout by Amazon TOC Contents Overview of Checkout by Amazon Inline Standard Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

Event Tickets Magento Extension User Guide Official extension page: Event Tickets

Event Tickets Magento Extension User Guide Official extension page: Event Tickets Event Tickets Magento Extension User Guide Official extension page: Event Tickets Page 1 Table of contents: 1. Event Creation........3 2. Ticket creation settings......6 3. Custom registration fields creation...8

More information

Welcome to Innovative's Ministry Websites

Welcome to Innovative's Ministry Websites Welcome to Innovative's Ministry Websites Ministry Administration Tools You now have access to the administrative tools for your Ministry Bookstore Website. These tools are designed to help you maintain

More information

Qdos Website Guide. Version 3 01/02/2011

Qdos Website Guide. Version 3 01/02/2011 Qdos Website Guide Version 3 01/02/2011 What you will find in this document A simple guide showing you how to get the most from your account online, including how to: Use the new Qdos Reception Zone Navigate

More information

Lesson 2 Analysing Your Online Presence

Lesson 2 Analysing Your Online Presence Lesson 2 Analysing Your Online Presence On completion of this lesson you should be able to: Be aware of some website diagnostic tools available on the internet Understand how to perform various diagnostic

More information

Advertiser Reference Guide. Advertiser Quick Start Guide. A quick reference for new advertisers

Advertiser Reference Guide. Advertiser Quick Start Guide. A quick reference for new advertisers Advertiser Reference Guide Advertiser Quick Start Guide A quick reference for new advertisers Welcome to the Clickbooth CPA Advertising Network! Clickbooth CPA Network is a single-stop solution for performance-based

More information

Data Collection Document version

Data Collection Document version Data Collection Document version 5.3 2017 Contents 1 Options for data collection 1.1 Tag Integration 1.2 Standard pixel 1.3 Accelerated Mobile Pages AMP 1.4 Mobile SDKs 1.5 Server-to-Server 2 Advanced

More information

How to redeem your Groupon voucher for Multiple Items explained in 6 simple steps:

How to redeem your Groupon voucher for Multiple Items explained in 6 simple steps: How to redeem your Groupon voucher for Multiple Items explained in 6 simple steps: Step 1 Step 2 Step 3 Step 4 Step 5 Step 6 Receiving your voucher deal confirmation Finding your Groupon code Redeeming

More information

IDX Quick Start Guide. A Guide for New Clients

IDX Quick Start Guide. A Guide for New Clients IDX Quick Start Guide A Guide for New Clients Introduction Congratulations on your decision to integrate IDX property search and lead capture tools into your website! With these IDX tools, your website

More information

Admin/User Manual. om

Admin/User Manual.  om 1 Admin/User Manual www.smslauncher.c om 2 THIS MANUAL IS DEVIDED INTO THREE PARTS: 1. THE MEMBER CONTROL PANEL 2. THE ADMIN CONROL PANEL 3. THE CONTENT MANAGEMENT PANEL THE MEMBER CONTROL PANEL is visible

More information

Standard Checkout. HTML Implementation Guide. U.K. Version

Standard Checkout. HTML Implementation Guide. U.K. Version Standard Checkout HTML Implementation Guide U.K. Version 2013-09-05 Contents 3 Contents List of Tables... 5 Overview of Checkout by Amazon... 7 Who Should Read This Document... 7 Prerequisites... 7 Your

More information

ecommerce Documentation Powered by

ecommerce Documentation Powered by ecommerce Documentation Powered by Last Updated November 24 th 2015 Contents Introduction... 3 Products... 4 Add/Edit Products... 4 Product Details... 4 Product Categories... 5 Product Tags (optional)...

More information

If you re serious about Cookie Stuffing, take a look at Cookie Stuffing Script.

If you re serious about Cookie Stuffing, take a look at Cookie Stuffing Script. Cookie Stuffing What is Cookie Stuffing? Cookie Stuffing is a very mild form of black hat marketing, because in all honesty, this one doesn t break any laws. Certainly, it goes against the terms of service

More information

GOOGLE ANALYTICS HELP PRESENTATION. We Welcome You to. Google Analytics Implementation Guidelines

GOOGLE ANALYTICS HELP PRESENTATION. We Welcome You to. Google Analytics Implementation Guidelines GOOGLE ANALYTICS HELP PRESENTATION We Welcome You to Google Analytics Implementation Guidelines 05/23/2008 Ashi Avalon - Google Analytics Implementation Presentation Page 1 of 28 1) What Is Google Analytics?

More information

Affiliate Guide. Version Jan 2017

Affiliate Guide. Version Jan 2017 Website: http://magehit.com Contact: sale@magehit.com Affiliate Guide Version 4.0.5 - Jan 2017 Configuration Go to System >> Configurations >> MageHit >> Affiliate Pro (or Affiliate Pro >> Configuration)

More information

Welcome to the Soholaunch Addons Affiliate Program

Welcome to the Soholaunch Addons Affiliate Program Welcome to the Soholaunch Addons Affiliate Program Dear Soholaunch Partner, Thank you for your interest in the Soholaunch Addons Affiliate Program. In this presentation you ll find. An overview of the

More information

AlliedWallet QuickPay API

AlliedWallet QuickPay API AlliedWallet QuickPay API The AlliedWallet QuickPay API can process your online purchases with a minimal amount of programming. Both shopping cart and subscription transactions can be submitted. The QuickPay

More information

Overview and integration guide

Overview and integration guide ecommerce Widget Overview and integration guide Last generated: September 11, 2018 2018 TruRating. All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any

More information

Setup Options for the Tracking of Elements

Setup Options for the Tracking of Elements Setup Options for the Tracking of Elements Document version 1.2 2017 About this document Webtrekk offers a variety of analyses. Some of them automatically provide data, as soon as Webtrekk is integrated

More information

Engage Web Tracking. Getting Started Guide. Silverpop. June 2010

Engage Web Tracking. Getting Started Guide. Silverpop. June 2010 Engage Web Tracking Getting Started Guide Silverpop June 2010 Table of Contents Welcome to Engage Web Tracking... 3 Getting Started... 3 Before You Begin... 3 Setting up Web Tracking... 4 Enabling Web

More information

Admin/User Manual SoftPal.com.ng

Admin/User Manual SoftPal.com.ng Admin/User Manual SoftPal.com.ng 2 THIS MANUAL IS DIVIDED INTO THREE PARTS: 1. THE MEMBER CONTROL PANEL 2. THE ADMIN CONROL PANEL 3. THE CONTENT MANAGEMENT PANEL THE MEMBER CONTROL PANEL is visible to

More information

BrainCert Enterprise LMS. Learning Management System (LMS) documentation Administrator Guide Version 3.0

BrainCert Enterprise LMS. Learning Management System (LMS) documentation Administrator Guide Version 3.0 BrainCert Enterprise LMS Learning Management System (LMS) documentation Administrator Guide Version 3.0 1 P a g e Table of Contents... 3... 3... 4... 4... 5... 5... 6... 6... 8... 8... 9... 9... 10...

More information

NCR Retail Online Partner Update NCR Retail Online Partner Update

NCR Retail Online Partner Update NCR Retail Online Partner Update NCR Retail Online Partner Update NCR Retail Online Partner Update Presenters: Laura Boylan Jack Roberts NCR Retail Online What is NCR Retail Online (NRO)? Hosted ecommerce solution powered by Magento CE

More information

InstaMember USER S GUIDE

InstaMember USER S GUIDE InstaMember USER S GUIDE How to Add & Edit a Product 1 How to Add & Edit a Product This guide will help you learn how to add, edit and manage different products on your InstaMember powered site. This includes

More information

Measurement and evaluation: Web analytics and data mining. MGMT 230 Week 10

Measurement and evaluation: Web analytics and data mining. MGMT 230 Week 10 Measurement and evaluation: Web analytics and data mining MGMT 230 Week 10 After today s class you will be able to: Explain the types of information routinely gathered by web servers Understand how analytics

More information

Modern Cookie Stuffing

Modern Cookie Stuffing Modern Cookie Stuffing A step-by-step guide on modern cookie stuffing techniques that actually work Before you begin to read this, please be aware that this e-book is not for the lazy internet marketer.

More information

Sliding PayPal Shopping Cart 2 DMXzone

Sliding PayPal Shopping Cart 2 DMXzone Table of contents Table of contents... 1 About Sliding PayPal Shopping Cart 2... 2 Features in Detail... 3 The Basics: Use Sliding PayPal Shopping Cart 2 on your Page... 21 Advanced: Different Options

More information

Advertiser User Manual. A manual on how to use the TradeDoubler performance based marketing interface

Advertiser User Manual. A manual on how to use the TradeDoubler performance based marketing interface Advertiser User Manual A manual on how to use the TradeDoubler performance based marketing interface CONTENT 1. Introduction... 2 About This Manual... 2 2. The Basics for a successful Publisher program...

More information

Version 14 Supplemental Manual

Version 14 Supplemental Manual Version 14 Supplemental Manual This is a reference to the features that will be released from July 1, 2013 through July 1, 2014. Click the name of the feature to jump to that section. New Features: Version

More information

All of your registration data can be exported into either a.csv or spreadsheet file.

All of your registration data can be exported into either a.csv or spreadsheet file. How to Guide to Setting up Registrations with TryBooking Overview This document is a guide for setting up any type of an event where you need your patrons to complete a series of questions at the time

More information

Fundraising Website Guide

Fundraising Website Guide This Guide will help you set-up and use your team s new fundraising website! Please let us know if you need any assistance or have any questions. This document will be updated regularly as we receive your

More information

Standard Checkout. XML Implementation Guide. U.K. Version

Standard Checkout. XML Implementation Guide. U.K. Version Standard Checkout XML Implementation Guide U.K. Version 2013-09-05 Contents 3 Contents List of Tables.. 5 Overview of Checkout by Amazon.. 7 Who Should Read This Document. 7 Prerequisites. 7 Your Tasks

More information

HOW TO BUILD AN ONLINE STORE

HOW TO BUILD AN ONLINE STORE A-Z GUIDE HOW TO BUILD AN ONLINE STORE by Dawning Digital DAWNINGDIGITAL.COM A-Z GUIDE Hi There! HOW TO BUILD AN ONLINE STORE Here's your guide to building an online store! After building quite a few online

More information

How to Setup & Use the Direct Traffic Features in CPV Lab

How to Setup & Use the Direct Traffic Features in CPV Lab How to Setup & Use the Direct Traffic Features in CPV Lab Tracking Direct Traffic (Organic, Links, etc.) Direct Traffic are visitors that arrive at your landing pages without going through the campaign

More information

marketing (if applicable): With your permission, we may send you s about our store, new products and other updates.

marketing (if applicable): With your permission, we may send you  s about our store, new products and other updates. PRIVACY STATEMENT ---- SECTION 1 - WHAT DO WE DO WITH YOUR INFORMATION? When you browse our site, we also automatically receive your computer s internet protocol (IP) address in order to provide us with

More information

Introduction to List Building. Introduction to List Building

Introduction to  List Building. Introduction to  List Building Introduction to Email List Building Introduction to Email List Building 1 Table of Contents Introduction... 3 What is email list building?... 5 Permission-based email marketing vs. spam...6 How to build

More information

Beaches Program Terms and Conditions

Beaches Program Terms and Conditions Beaches Program Terms and Conditions Key Information Action Description Validation Criteria Validation Period Cookie Period Completed Sale Payable Post Travel Payment will be recieved within 45 days of

More information

Magento 2 Management. The Essentials

Magento 2 Management. The Essentials Magento 2 Management The Essentials Contents 1 Introduction - About this series 2 Prerequisites 3 Navigating the administration 4 General Configuration - Web and URLs - Design - SEO - Currency - Emails

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

Aculab licence activation server system

Aculab licence activation server system Aculab licence activation server system User guide APB0277 Issue 5.0 PROPRIETARY INFORMATION The information contained in this document is the property of Aculab plc and may be the subject of patents pending

More information

REAL-TIME PUBLISHER TRACKING SET-UP GUIDE

REAL-TIME PUBLISHER TRACKING SET-UP GUIDE REAL-TIME PUBLISHER TRACKING SET-UP GUIDE TABLE OF CONTENTS Overview... 3 Benefits... 4 Solution 1: Server-side publisher tracking... 5 Solution 2: Browser-side publisher tracking... 7 Set-up checklist...

More information

Dynamic Number Insertion Quick Start Guide

Dynamic Number Insertion Quick Start Guide Dynamic Number Insertion Quick Start Guide March 2018 (800) 242-1690 About Dynamic Number Insertion (DNI) The purpose of this quick-start guide is to walk you through the steps required to dynamically

More information

Checkout by Amazon Widget Reference Guide

Checkout by Amazon Widget Reference Guide Checkout by Amazon Widget Reference Guide 2 Checkout by Amazon TOC Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

How to Increase Sales With Personalized Website Visitor Engagement. How to Increase Sales With Personalized Website Visitor Engagement

How to Increase Sales With Personalized Website Visitor Engagement. How to Increase Sales With Personalized Website Visitor Engagement How to Increase Sales With Personalized Website Visitor Engagement 1 What is personalized website visitor engagement? The first impression visitors have about products or services is through your company

More information

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Phone:

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad   Phone: E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Email: AhmadNassr@gmail.com Phone: 0599042502 1. Rationale This is the major project for both (Open Source and.net teams) as an E-Commerce

More information

Quick Reference Guide: SafeShop 3 Web Store. User Manual

Quick Reference Guide: SafeShop 3 Web Store. User Manual : SafeShop 3 Web Store User Manual TABLE OF CONTENTS REGISTRATION.2 SAFESHOP WEBSTORE. 5 1. FIND MY TRANSACTION:.5 2. STAGED ORDERS:.6 3. MANAGE ORDERS: 7 4. MANAGE SALES...9 5. MANAGE CREDIT/CHARGEBACK

More information

B. We may offer you the opportunity to submit other information about yourself (such as gender, age, occupation, hobbies, interests, zip code, etc.

B. We may offer you the opportunity to submit other information about yourself (such as gender, age, occupation, hobbies, interests, zip code, etc. DELANCEYPLACE.COM LLC PRIVACY POLICY DELANCEYPLACE.COM, LLC and its affiliates ( DelanceyPlace, we or us ) operate a website and related social network along with all related applications, software, daily

More information

TREND MICRO PRIVACY POLICY (Updated May 2012)

TREND MICRO PRIVACY POLICY (Updated May 2012) TREND MICRO PRIVACY POLICY (Updated May 2012) Trend Micro Incorporated and its subsidiaries and affiliates (collectively, "Trend Micro") are committed to protecting your privacy and ensuring you have a

More information

CM Coupon Listing Documentation

CM Coupon Listing Documentation CM Coupon Listing Documentation Release 2.1.0 CMExtension March 03, 2015 Contents 1 Overview 3 1.1 License.................................................. 3 1.2 Technical Requirements.........................................

More information

Enhanced Ecommerce Tracking with Google Tag Manager - Installation/Set-up Guide

Enhanced Ecommerce Tracking with Google Tag Manager - Installation/Set-up Guide Enhanced Ecommerce Tracking with Google Tag Manager - Installation/Set-up Guide 1. Disable Compilation Mode: To check that this is disabled, go to System- >Tools->Compilation. If the compiler status is

More information

Create-a-Product API. User Guide. - Updated: 6/2018 -

Create-a-Product API. User Guide. - Updated: 6/2018 - Create-a-Product API User Guide - Updated: 6/2018 - Copyright (c) 2018, Zazzle Inc. All rights reserved. Zazzle is a registered trademark of Zazzle Inc. All other trademarks and registered trademarks are

More information

POWER UP PLUS: 6 TECHNOLOGIES TO ENHANCE YOUR SHOPIFY PLUS STORE CONTRIBUTING PARTNERS:

POWER UP PLUS: 6 TECHNOLOGIES TO ENHANCE YOUR SHOPIFY PLUS STORE CONTRIBUTING PARTNERS: POWER UP PLUS: 6 TECHNOLOGIES TO ENHANCE YOUR SHOPIFY PLUS STORE CONTRIBUTING PARTNERS: 05 ACHIEVING A BETTER ECOMMERCE SEARCH EXPERIENCE 54 POWER UP PLUS: 6 TECHNOLOGIES TO ENHANCE YOUR SHOPIFY PLUS STORE

More information

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE This setup guide will help you integrate Magento with your Campaigner account. A API Settings API username/password You must enter the API credentials for your

More information

System powered by FATbit Technologies

System powered by FATbit Technologies Manual for GROUPON Script: bitfat Deals USER MANUAL FOR GROUPON: bitfatdeals SYSTEM System powered by FATbit Technologies Table of contents 1. Introduction. 3 of 98 2. Front End System Interface. 4 of

More information

CAF DONATE. Setting up CAF Donate. Overview of the CAF Donate donation tools. Step 1 Setting up your Main Campaign

CAF DONATE. Setting up CAF Donate. Overview of the CAF Donate donation tools. Step 1 Setting up your Main Campaign CAF DONATE Setting up CAF Donate Overview of the CAF Donate donation tools This guide will enable you to set up a secure donation page for a Main Campaign to appear on your own website. You will need to

More information

Flynax SEO Guide Flynax

Flynax SEO Guide Flynax Flynax SEO Guide Flynax 2018 1 Ì ÌFlynax SEO Guide Due to the fact that every project has its own purpose, audience and location preferences, it is almost impossible to make the script that will meet SEO

More information

CMSnipcart Documentation

CMSnipcart Documentation CMSnipcart Documentation Release 1.0.0 CMExtension January 07, 2016 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 1.2 Features..................................................

More information

TechTarget, Inc. Privacy Policy

TechTarget, Inc. Privacy Policy This Privacy Policy (the Policy ) is designed to inform users of TechTarget, Inc., and its affiliates (collectively TechTarget ) network of websites about how TechTarget gathers and uses information provided

More information

NHS R&D Forum Privacy Policy: FINAL v0.1 May 25 th 2018

NHS R&D Forum Privacy Policy: FINAL v0.1 May 25 th 2018 NHS R&D Forum Privacy Policy: FINAL v0.1 May 25 th 2018 This privacy policy is published to provide transparent information about how we use, share and store any personal information that you may provide

More information

HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM

HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM WHAT IS A VOUCHER CODE? A voucher code is a unique six-digit code that carries a monetary value. Voucher codes are not linked to specific

More information

TREND MICRO PRIVACY POLICY (October 2016)

TREND MICRO PRIVACY POLICY (October 2016) TREND MICRO PRIVACY POLICY (October 2016) Trend Micro Incorporated and its subsidiaries and affiliates (collectively, Trend Micro ) are committed to protecting your privacy and ensuring you have a positive

More information

Althea UK and Ireland Limited Privacy Policy

Althea UK and Ireland Limited Privacy Policy Althea UK and Ireland Limited Privacy Policy BMS Ref: ALT23 V1.1 Page 1 of 7 Document Control Version Date Author/Reviewer/Approver Revision notes V1.0 Draft 18-5-18 Legal Author Authors draft V1.1 20-5-18

More information

1. Ruby Life Affiliate Program Terms & Conditions

1. Ruby Life Affiliate Program Terms & Conditions 1. Ruby Life Affiliate Program Terms & Conditions Key Information Action Description Validation Criteria Validation Period Cookie Period A completed sale on rubycup.com A sale is completed when the return

More information