Implementation Guide. The essentials

Size: px
Start display at page:

Download "Implementation Guide. The essentials"

Transcription

1 Implementation Guide The essentials

2 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 Nosto in just a couple of hours. Let s get started! mode - 6 7! 3 5 mode - Nosto recommendation slots

3 <script type="text/javascript"> //<![CDATA[ (function(){function a(a){var b,c,d=window.document.createelement("iframe");d.src="javascript:false",(d.frameelement d).style.csstext="width: 0; height: 0; border: 0";var e=window.document.createelement("div");e.style.display="none";var f=window.document.createelement("div");e.appendchild(f),window.document.body.insertbefore(e,window.document.body.firstchild),f.appendchild(d);try{c=d.c ontentwindow.document}catch(g){b=document.domain,d.src="javascript:var d=document.open();d.domain='"+b+"';void(0);",c=d.contentwindow.document}return c.open()._l=function(){b&&(this.domain=b);var c=this.createelement("scr".concat("ipt"));c.src=a,this.body.appendchild(c)},c.write("<bo".concat('dy onload="document._l();">')),c.close(),d}var b="nostojs";window[b]=window[b] function(a){(window[b].q=window[b].q []).push(a)},window[b].l=new Date;var c=function(d,e){if(!document.body)return settimeout(function(){c(d,e)},30);e=e {},window[b].o=e;var f=document.location.protocol,g=[" "connect.nosto.com",e.path "/include/",d].join("");a(g)};window[b].init=c})(); nostojs.init( [accountid] ); //]]> </script> The Javascript embed script enables Nosto to catch the first bits of information. It must be placed in the header of your site html structure. It s an universal script and solely one part must be personalized : the account ID section. It is represented alive by [accountid]. At every page load, the Nosto crawler scans the concerned page and will catch different Nosto related variables. Thanks to this Javascript embed script, Nosto is able to catch in real-time the activity of your site such as the number of active visitors. However, at this stage, Nosto is flying in the dark. The information caught still needs to be structured. We will discover that part in the following section. The embedded Javascript must be placed in the header of your site html structure. It must not be placed neither in the body nor the footer section. Consequently, it will be displayed across your site. Note that you need to remove cornered brackets when adding your account ID. As an example, if your account ID is 12345, it must be added as such : nostojs.init( );

4 Category Product Search Cart Order Confirmation Customer Information Nosto needs to structure and give meaning to the information gathered via the embed script. Browsing and purchase behavior are indeed crucial to Nosto algorithms in order to produce relevant recommendations. To do so, a few lines of code must be placed across the site on every page type. Let s start by having a look at the div tag that needs to be placed in your Category template file : <div class="nosto_category" style="display:none">/winter/accessories/beanies</div> That line of code (DIV element) has to be placed in the template file of your Category s. Consequently, every category page will be tagged with that div tag. In the example above, the value /Winter/Accessories/Beanies is an example. This must be replaced by the corresponding variable of our e-commerce platform. The div tag nosto_category will be also added to Product s but the variable that needs to be sent is slightly different. We will detail it in the following part : of product pages.

5 Category Product Search Cart Order Confirmation Customer Information <div class="nosto_product" style="display:none"> <span class="url"> Product URL <span class="product_id">beanie123</span> <span class="name">red wool beanie</span> <span class="image_url"> <span class="price">30.90</span> Product parent ID Product name Price as displayed in front-end (can be a discounted price for instance) Product image URL. The images are resized by Nosto and used in the recommendation slots in form of thumbnails. <span class="price_currency_code">eur</span> <span class="availability">instock</span> Currency - Example : EUR for euro, GBP for british pound, USD for US Dollar, - 3 letters - ISO4217 Availability of the product - Either InStock, Discontinued or OutOfStock (must be the main availability) <span class="category">/winter/accessories/beanies</span> <span class="category">/sales/accessories</span> <!-- Additional properties --> Categories in which the product is listed <span class="description">it's a beautiful beanie.</span> Product description <span class="list_price">40.90</span> RSVP price - Nosto will then be able to know if one product is discounted for instance <span class="brand">adidas</span> Brand <span class="tag1">men</span> <span class="tag2">red</span> Tag filled according to merchant needs <span class="tag3">sales</span> </div> <span class="date_published"> </span> <div class="nosto_category" style="display:none">/sales/accessories</div> Date when the item has been published on-site Active category (breadcrumb) - Path followed by the user to find the product

6 Category Product Search Cart Order Confirmation Customer Information By default, the Search Query Parameters must be filled in the Nosto interface. When you log in to my.nosto.com, select «Account» and «Parameters». In the example below, the Search Query Parameter is the term «q». This reflects the term after the question mark «?» and before the equal sign «=». q If for some reason, you don t have any Search Query Parameters in place, as an alternative, you can tag the Search with the following div element : <div class="nosto_search_term" style="display:none">[keyword]</div> Exemple : <div class="nosto_search_term" style="display:none">red beanie</div

7 Category Product Search Cart Order Confirmation Customer Information <div class="nosto_cart" style="display:none"> <div class="line_item"> <span class="product_id">beanie123</span> Product parent ID <span class="quantity">1</span> Quantity ordered <span class="name">red wool beanie</span> <span class="unit_price">30.90</span> <span class="price_currency_code">eur</span> </div> <div class="line_item"> <span class="product_id">gloves456</span> <span class="quantity">1</span> <span class="name">blue gloves</span> <span class="unit_price">15.90</span> <span class="price_currency_code">eur</span> </div> Product name Price as displayed in front-end (can be a discounted price for instance) Currency - 3 letters - ISO4217 Same for the additional items in cart Beware - - Every different item included in cart must be listed in a line_item div tag. - - The Product ID returned must be the parent ID (or mother - name differing per platform). The ID must be the same as the ID returned in the Product. This allows Nosto to correctly track when one item is added in basket.

8 Category Product Search Cart Order Confirmation Customer Information <div class="nosto_purchase_order" style="display:none"> <span class="order_number">1445</span> Order ID <div class="buyer"> <span Client address <span class="first_name">john</span> <span class="last_name">doe</span> <div class="purchased_items"> <div class="line_item"> <span class="product_id">beanie123</span> <span class="quantity">1</span> Name Surname <span class="name">red wool beanie</span> <span class="unit_price">30.90</span> <span class="price_currency_code">eur</span> </div> </div> </div> Product ordered info Beware - - The Product ID returned must be the parent ID (or mother - name differing per platform). The ID must be the same as the ID returned in the Product and in the Cart. This allows Nosto to correctly track the conversions. - - If multiple products are ordered, every one of them must be contained in one unique line_item div tag. - - The tags above must be placed in the Order Confirmation. If you use third party payment module such as Paypal, you must redirect your clients to that page once purchase has been completed.

9 Category Product Search Cart Order Confirmation Customer Information <div class="nosto_customer" style="display:none"> <span Client address <span class="first_name">john</span> <span class="last_name">doe</span> <!-- Additional properties --> <span class="birth_date"> </span> </div> Name Surname Date of birth The tags above must be placed on every page type. This information is solely used to personalize the Nosto triggered s : Abandoned Cart, Order Follow-up and the We Miss You campaigns. The info are encrypted and are not use for any other purpose.

10 When you implement Nosto tags, you can use the Nosto Mode (a.k.a Nosto Debug Tool) to make sure everything has been coded accordingly. To activate the Mode, you can add the string?nostodebug=true at the end of your store URL. A console will be displayed (see below) and will display the information sent to Nosto. < > When clicking the grey gear, the console will expand (1) and the information sent via the Nosto div tags will be displayed. If required values are missing, you ll be notified via Nosto pink notifications (2). 1 2

11 Nosto can now analyze and leverage your traffic. Browsing and purchase behavior is tracked for every one of your visitors and clients. However, you can t display any recommendation yet. To do so, you have to insert Nosto placeholders (DIV elements) where you want to display the recommendations. You can create a recommendation slot in your Nosto interface at Simply select the Campaigns tab and the Recommendation Slots category. As an alternative, you can edit one of the existing recommendation slots.

12 When you create a recommendation slot, you must choose where you want to display the slot and the ruleset defining the content of the recommendations. Click the button «Choose» and pick the desired ruleset. Next, you can adjust the settings and allocate a recommendation template to the slot (see section ). If you choose an existing slot, the Nosto algorithms are already pre-set. If you make any change, don t forget to save! Once you are ready, you can save and access the HTML code to place the slot on your site (see below). The Nosto recommendations are loaded through DIV element nosto_element (example below). Beware When you insert the placeholders into your page, no recommendation will be displayed, even if the recommendation slot has been individually enabled. Important By default and for security reasons, when implementing Nosto, the recommendations are entirely hidden to your visitors. You can activate all the recommendations on your website by flipping the switch below ON or by clicking Activate in the on-boarding menu (see last page of this guide).

13 The placeholders being on-site, you have to make sure everything is set up perfectly so that you can turn the recommendations on with serenity. To double check, you can trigger the Nosto Mode (a.k.a Nosto Debug Tool) by adding the string?nostodebug=true at the end of your shop URL. This allows you to polish the design of the slots without even installing Nosto in a stage environment. This is a process 100% secure. The recommendations slots are indeed never displayed your visitors. When your page is loaded with the extension, the recommendation slots will be displayed. If Nosto algorithms haven't collected enough data yet, Nosto mock-ups (similar to tablets) will be displayed. These mock-ups are never displayed to your visitors. If Nosto algorithms have collected enough data, you will then see real products displayed in the recommendation slots.

14 Nosto gives you complete freedom in terms of front-end design. When you create a recommendation slot, you have to choose either one already-designed Nosto template or create one from scratch. 5 generic templates are offered by default. However, you can edit & amend its HTML & CSS properties if needed. The template you have selected will apply to the recommendation slot once you have chosen the targeted page type and via the selected Nosto DIV element. You have access to the templates properties anytime. As an example, you can choose how many products per row you want to display, the color and size of font, color of CTA buttons, This gives you the opportunity to build an entirely integrated recommendation slot that matches your website s style guide.

15 If you have in-house resources, you can directly modify the recommendation templates in the HTML section. This gives you more freedom in terms of custom design and aesthetic. Important When you amend the HTML and CSS properties of one template, it is key to respect Nosto variables. To guide you, you have access to an index listing all the Nosto variables.

16 You now know the essentials to set up Nosto! We advise you to use the Nosto Mode during and after the implementation phase of Nosto. This is indeed a visual way to make sure everything is set up according to your needs. We let you discover the Nosto interface via Once you have installed Nosto and once the Javascript code being placed on-site, you will be guided with the Nosto on-boarding menu. This 3-steps guide invites you to preview and edit the recommendations one last time before activating Nosto and displaying the recommendations to your visitors! < >

17 Rock the show!

Merchant Tracking Code Guide

Merchant Tracking Code Guide Merchant Tracking Code Guide October 2008 Contents 1. Introduction... 3 2. Data Protection Act... 4 3. Activation... 5 4. All pages... 5 5. Which tracking code should I use?... 6 6. Standard Tracking Integration...

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

Custom Contact Forms Magento 2 Extension

Custom Contact Forms Magento 2 Extension Custom Contact Forms Magento 2 Extension User Manual This is the user manual of Magento 2 Custom Contact Forms v100.0.0 and was last updated on 29-06-2017. To see what this extension can do, go to the

More information

Sitecore E-Commerce Cookbook

Sitecore E-Commerce Cookbook Sitecore E-Commerce Cookbook Rev: 2011-09-12 Sitecore E-Commerce Fundamental Edition 1.1 Sitecore E-Commerce Cookbook A marketer's guide to the Sitecore E-Commerce Fundamental Edition Sitecore E-Commerce

More information

Ad Banner Manager 8.1 User Guide. Ad Banner Manager 8.1

Ad Banner Manager 8.1 User Guide. Ad Banner Manager 8.1 Ad Banner Manager 8.1 User Guide Ad Banner Manager 8.1 User Guide... 1 Introduction... 6 Installation and configuration... 6 Upgrading... 6 Installation Steps... 7 Setting Page Permissions for the BannerAdvertisers

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

Act! Marketing Automation

Act! Marketing Automation Act! Marketing Automation A Guide to Getting Started Helping your business grow with marketing automation Act! Marketing Automation Getting Started Guide 2 Contents Page Page 8 Page 10 Page 11 Page 11

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

Cart32 Store Builder User Manual

Cart32 Store Builder User Manual Cart32 Store Builder User Manual 1 Contents 1. Client and Sales Summaries... 3 2. Main Categories... 3 3. Store Builder Sub-Categories... 3 Categories... 4 Add a Category/Subcategory... 5 Edit a Category/Subcategory...

More information

6000+ products. customer orders. We convert raw nutritional data into HTML tables for faster loading and higher quality!

6000+ products. customer orders. We convert raw nutritional data into HTML tables for faster loading and higher quality! NutriLoader Your Complete Ecommerce Solution YOUR WEBSITE 6000+ products customer orders to fullfilment NutriLoader Datafeed Product and order automation managed by you! 6000+ products loaded nightly into

More information

Introduction. Logging In. https://portal.format.co.nz/login/trt

Introduction. Logging In. https://portal.format.co.nz/login/trt Introduction Welcome to the Tidd Ross Todd On-line Ordering System. This site has been created with the intention to assist users with the following: placing orders viewing work in progress searching for

More information

SEO-Cart Documentation

SEO-Cart Documentation SEO-Cart Documentation Last Modified October 8th, 2013 Introduction SEO-Cart is a complete e-commerce internet solution for your business. Not only does SEO-Cart focus on the latest search engine optimization

More information

Setting up your TouchNet Marketplace ustore

Setting up your TouchNet Marketplace ustore Setting up your TouchNet Marketplace ustore Topics Covered: Logging into TouchNet Accessing your store Email Messages Single Store Settings Store Template Settings Users Categories Products including Options

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

Installation and Activation of Foody pro theme

Installation and Activation of Foody pro theme Installation and Activation of Foody pro theme Installation 1. Install Word Press from http://codex.wordpress.org/installing_wordpress. 2. Upload via Word press Admin: - Go to your WordPress admin panel,

More information

Amazon Marketing Services User Guide

Amazon Marketing Services User Guide Contents Register Your Brand...2 Add Additional Users and Brands...2 Add a new brand...2 Add a brand user to AMS...3 Change the permission level for a brand user...3 Amazon Pages...4 Begin working with

More information

Data Asap Introduction Versions Getting Started Prerequisite Preparation Screens MANAGE PROJECTS (Screen 1)...

Data Asap Introduction Versions Getting Started Prerequisite Preparation Screens MANAGE PROJECTS (Screen 1)... TABLE OF CONTENTS Data Asap Introduction... 2 Versions... 2 Getting Started... 3 Prerequisite... 3 Preparation... 3 Screens... 3 MANAGE PROJECTS (Screen 1)... 3 Load Project Tab... 3 New Project tab...

More information

Website Publishing Tool Manual

Website Publishing Tool Manual Customer Support Website Publishing Tool Manual This is a designed as a definitive guide to all the features and tools available within Website Publishing Tool. Contents Introduction... 4 Adding Content...

More information

The NFU Marketing Barn Manual Personalised Marketing Resources

The NFU Marketing Barn Manual Personalised Marketing Resources 2017 01 The NFU Marketing Barn Manual Personalised Marketing Resources Here is a guide to help you create your own personalised marketing resources. If you have any questions regarding the site itself,

More information

Step-by-Step Guide to Set Up Your Challenge Opt-In Page with MailChimp and LeadPages (last updated August 6, 2017)

Step-by-Step Guide to Set Up Your Challenge Opt-In Page with MailChimp and LeadPages (last updated August 6, 2017) Step-by-Step Guide to Set Up Your Challenge Opt-In Page with MailChimp and LeadPages (last updated August 6, 2017) MailChimp is a beginner-level marketing automation platform and an email marketing service.

More information

Creating a Business Card. A Tutorial for Catalogue Managers. Customising a Business Card 1

Creating a Business Card. A Tutorial for Catalogue Managers. Customising a Business Card 1 Creating a Business Card A Tutorial for Catalogue Managers Customising a Business Card 1 The completed two-sided Business Card that we will be creating. All files can be downloaded from http://www.mtivity.

More information

Printed Documentation

Printed Documentation Printed Documentation Table of Contents Getting Started... 1 Technical Support... 1 Introduction... 1 Getting Started... 3 Payment Option:... 3 Data Synchronization... 4 General Website settings... 5

More information

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Project #3 Review Forms (con t) CGI Validation Design Preview Project #3 report Who is your client? What is the project? Project Three action= http://...cgi method=

More information

Easy Cart User Manual

Easy Cart User Manual Easy Cart User Manual Table of contents 1. Installing Easy Cart (p. 2) 2. Overview of the administration panel (p. 2) 3. Configuring the website (p. 3) 4. Template settings (p. 6) 5. Setting the product

More information

Kentico CMS Web Parts

Kentico CMS Web Parts Kentico CMS Web Parts Abuse report Abuse report In-line abuse report Articles Article list BizForms BizForm (on-line form) Blogs Comment view Recent posts Post archive Blogs comments viewer New blog Blog

More information

PlayerLync Forms User Guide (MachForm)

PlayerLync Forms User Guide (MachForm) PlayerLync Forms User Guide (MachForm) Table of Contents FORM MANAGER... 1 FORM BUILDER... 3 ENTRY MANAGER... 4 THEME EDITOR... 6 NOTIFICATIONS... 8 FORM CODE... 9 FORM MANAGER The form manager is where

More information

Marketing Portal User s Guide. Buy A List Orders

Marketing Portal User s Guide. Buy A List Orders Marketing Portal User s Guide Buy A List Orders page 1 Marketing Portal User s Guide 1. Welcome to AdVestors Marketing Portal User s Guide! Please enter: hvamarketing.com into your browser s URL address

More information

Startup Guide. Version 2.3.7

Startup Guide. Version 2.3.7 Startup Guide Version 2.3.7 Installation and initial setup Your welcome email included a link to download the ORBTR plugin. Save the software to your hard drive and log into the admin panel of your WordPress

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

Getting Started with CSS Sculptor 3

Getting Started with CSS Sculptor 3 Getting Started with CSS Sculptor 3 With CSS Sculptor, you can quickly create a cross-browser compatible layout with custom widths, margins, padding, background images and more. Additionally, you can use

More information

Hotel Booking Plugin for WordPress Documentation

Hotel Booking Plugin for WordPress Documentation Hotel Booking Plugin for WordPress Documentation Updated on November 17, 2017 Overview Quick Start Guide Installation Add Seasons Add Services Add Accommodation Types Add Amenities Add Categories Add Rates

More information

Advanced Training Manual: Surveys Last Updated: October 2013

Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Page 1 of 28 Table of Contents Introduction Training Objective Surveys Overview Survey Table Survey Options

More information

Table of Contents. Introduction Technical Support Getting Started Data Synchronization General Website Settings...

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

More information

Oracle Data Visualization SDK

Oracle Data Visualization SDK Oracle Business Analytics Oracle Data Visualization SDK Antony Heljula 26 June 2017 www.peakindicators.com 1 Gold Partners Specialized Oracle Business Intelligence Foundation Oracle Data Visualization

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

CUSTOMER PORTAL Splash Pages

CUSTOMER PORTAL Splash Pages CUSTOMER PORTAL Splash Pages SPLASHPAGES In the splash page area, you can either create a custom splash page or use our editing tool and create a custom splash page using your own code. These splash pages

More information

The Elements Theme English manual: v1

The Elements Theme English manual: v1 The Elements Theme English manual: v1 Introduction Thank you for installing the Elements Theme for Lightspeed Ecommerce. This is our 3 rd theme for this platform and we used all our past experiences and

More information

Frooition Implementation guide

Frooition Implementation guide Frooition Implementation guide Version: 2.0 Updated: 14/12/2016 Contents Account Setup: 1. Software Checklist 2. Accessing the Frooition Software 3. Completing your Account Profile 4. Updating your Frooition

More information

DETAILS. Let s take a walkthrough of the various elements which comprise the Details tab.

DETAILS. Let s take a walkthrough of the various elements which comprise the Details tab. DETAILS Last updated: 12/19/2017 The Details tab will allow you to easily craft your Web site to meet your needs. The Home tab allows you to specify a layout and add content for your Home page, which is

More information

Set-up a Donation Option in Facebook

Set-up a Donation Option in Facebook Set-up a Donation Option in Facebook The opportunity to turn your social networking fans into active donors and financial supporters just got easier! Since 2009, ShopTab has helped thousands of clients

More information

VIDEO 1: WHAT ARE THE SMART CONTENT TOOLS? VIDEO 2: HOW DO YOU CREATE A SMART CTA?

VIDEO 1: WHAT ARE THE SMART CONTENT TOOLS? VIDEO 2: HOW DO YOU CREATE A SMART CTA? VIDEO 1: WHAT ARE THE SMART CONTENT TOOLS? Hello again! I m Angela with HubSpot Academy. Now that you have a contextual marketing strategy in place with segmentation and personalization, you re ready to

More information

Websites. Version 1.7

Websites. Version 1.7 Websites Version 1.7 Last edited 15 Contents MyNetball Information...3 Websites...4 Web packages...4 Setting up the layout...5 Uploading files and images...6 Using Dropbox to Increase your Website Data...7

More information

Sparrow Client (Front-end) API

Sparrow Client (Front-end) API Sparrow Client (Front-end) API Service API Version 3.6.0 (Build 8062) Released May 2017 Revision History Date Revision Comments Author 2017-05-22 1.0 Initial document Ilya Tretyakov 2 Table of Contents

More information

Designing Personalized Experiences For Your Brand

Designing Personalized Experiences For Your Brand THE ULTIMATE GUIDE TO: Designing Personalized Experiences For Your Brand Ashton Landry & Amie Levasseur THE PERSONALIZATION SUMMIT 2017 Designing Personalized Experiences For Your Brand Have you ever seen

More information

Getting Started Guide. Getting Started as a Pro Reseller

Getting Started Guide. Getting Started as a Pro Reseller Getting Started Guide Getting Started as a Pro Reseller Getting Started as a Pro Reseller Version 1.2 (12.01.08) Copyright 2008. All rights reserved. Distribution of this work or derivative of this work

More information

COUPONPAQ ADMIN USER GUIDE

COUPONPAQ ADMIN USER GUIDE COUPONPAQ ADMIN USER GUIDE -2- Overview THANK YOU FOR CHOOSING COUPONPAQ SOFTWARE COUPONPAQ platform is the No 1 feature packed coupon distribution software on the market. It creates an effective incentive

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

Your Cart User Manual v3.6

Your Cart User Manual v3.6 Your Cart User Manual v3.6 2 Your Cart User Manual v3.6 Table of Contents Foreword 0 7 Part I Getting Started Overview 11 Part II Categories & Products 1 Manage Categories... Overview 11 Add a New... Category

More information

MY BASKET LOOK BOOK

MY BASKET LOOK BOOK EMAIL MY BASKET LOOK BOOK SaleCycle.com/Email-My-Basket Make it easy for them to come back. 75% of website visitors who add items to a shopping cart will then leave your site without completing the purchase.

More information

Introduction. The topics included in this guide are:

Introduction. The topics included in this guide are: Introduction Caorda Content is a powerful content management tool that allows you to update your web site through a standard Internet web browser. The purpose of this guide is to introduce you to Caorda

More information

Getting Started with. InSpiredByYou.com COPYRIGHT STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED

Getting Started with. InSpiredByYou.com COPYRIGHT STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED Getting Started with InSpiredByYou.com COPYRIGHT 1998-2013 STUDIOPLUS SOFTWARE, LLC ALL RIGHTS RESERVED i Getting Started with InSpiredByYou Table of Contents Setting Up InSpiredByYou... 3 Set Up an InSpiredByYou

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

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management

Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Adobe Marketing Cloud Best Practices Implementing Adobe Target using Dynamic Tag Management Contents Best Practices for Implementing Adobe Target using Dynamic Tag Management.3 Dynamic Tag Management Implementation...4

More information

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements.

As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. As part of our commitment to continuously updating and enhancing our fundraising system, we are thrilled to announce our latest enhancements. Purchase Items during Registration Administrators can now enable

More information

Learning More About NetObjects Matrix Builder 1

Learning More About NetObjects Matrix Builder 1 Learning More About NetObjects Matrix Builder 1 NetObjects Matrix Builder is a service that hosts your Web site, makes it easy to update, and helps you interact with visitors. NetObjects Matrix Builder

More information

A Quick Introduction to the Genesis Framework for WordPress. How to Install the Genesis Framework (and a Child Theme)

A Quick Introduction to the Genesis Framework for WordPress. How to Install the Genesis Framework (and a Child Theme) Table of Contents A Quick Introduction to the Genesis Framework for WordPress Introduction to the Genesis Framework... 5 1.1 What's a Framework?... 5 1.2 What's a Child Theme?... 5 1.3 Theme Files... 5

More information

Veeam Website Content Syndication User Guide

Veeam Website Content Syndication User Guide Veeam Website Content Syndication User Guide 2017 Table of contents What is Veeam website content syndication? Accessing content syndication Content syndication installation Managing content Getting leads

More information

How to create and order individual pages. 1. Once you open the My Memories Suite software, choose the Design icon.

How to create and order individual pages. 1. Once you open the My Memories Suite software, choose the Design icon. How to create and order individual pages 1. Once you open the My Memories Suite software, choose the Design icon. 2. Under the Photobooks category, choose the size you would like your project to be out

More information

tracking software Keitaro

tracking software Keitaro How to integrate Exoclick s conversions tracking with tracking software Keitaro Introduction ExoClick gives you access to global traffic sources, targeting features, big data and statistical analytical

More information

$ $ Release Notes 3.4

$ $ Release Notes 3.4 Release Notes 3.4 B2B2X Price Display for ERP iscala B2B2X Price display gives you the possibility to display a unique price for a specific customer/user in your site, overriding the price listed in the

More information

.WELCOME TO OFFICE DEPOT ONLINE

.WELCOME TO OFFICE DEPOT ONLINE .WELCOME TO OFFICE DEPOT ONLINE This user guide is designed to show you how to use the Office Depot Online to its full potential. Its aim is to give you detailed instructions from logging in, to placing

More information

Brand Tools. Technical Channel Integration Guide

Brand Tools. Technical Channel Integration Guide Brand Tools Technical Channel Integration Guide Boldomatic Brand Tools Channel Integration Guide 01 Overview Boldomatic offers a wide range of powerful tools to help your brand engage your audience through

More information

WCMS Responsive Design Template Upgrade Training

WCMS Responsive Design Template Upgrade Training WCMS Responsive Design Template Upgrade Training The purpose of this training session is to provide training to site owners, who are upgrading their WCMS content to the new Responsive Design (RD) template.

More information

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer FORMS The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions Presented by: John Reamer Creating Forms Forms and Surveys: When and What to Use them For Both Allow you

More information

Table of content. Creating signup form Associating automation tools to signup form Signup form reports...42

Table of content. Creating signup form Associating automation tools to signup form Signup form reports...42 A User Guide Signup forms are the most popular tools for building a subscriber database. They let your website visitors become subscribers by entering basic details such as name and email address. The

More information

USER MANUAL TABLE OF CONTENTS. Easy Site Maintenance. Version: 1.0.4

USER MANUAL TABLE OF CONTENTS. Easy Site Maintenance. Version: 1.0.4 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Easy Site Maintenance... 1 Installation... 2 Installation Steps... 2 Installation (Custom Theme)... 3 Configuration... 4 Contact Us... 8 Easy

More information

USER MANUAL. Kingfisher Pro Fashion TABLE OF CONTENTS. Version:

USER MANUAL. Kingfisher Pro Fashion TABLE OF CONTENTS. Version: USER MANUAL TABLE OF CONTENTS Introduction... 2 Benefits of Kingfisher Pro Fashion... 2 Pre-requisites... 2 Installation... 3 Installation Steps... 3 Theme Configuration... 6 Contact Us... 32 Kingfisher

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

Subscriptions and Recurring Payments Guide

Subscriptions and Recurring Payments Guide Subscriptions and Recurring Payments Guide For Professional Use Only Currently only available in English. A usage Professional Uniquement Disponible en Anglais uniquement pour l'instant. Last Updated:

More information

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Shopping Widgets 3rd January 2018 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK Introduction KonaKart ( www.konakart.com ) is a Java based ecommerce platform

More information

Product Page PDF Magento 2 Extension

Product Page PDF Magento 2 Extension Product Page PDF Magento 2 Extension User Manual This is the user manual of Magento 2 Product Page PDF v100.0.0 and was last updated on 26-11- 2017. To see what this extension can do, go to the Magento

More information

Home Page. Select Server Software

Home Page. Select Server Software vshop Walkthrough Home Page Select Server Software Empty Shopping Cart Search for Product Enter Search Criteria Click Search Button Product Search Results Search Results Add Selection(s) Check Desired

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

Responsive Designer (RED) QuickStart Guide

Responsive  Designer (RED) QuickStart Guide Responsive Email Designer (RED) QuickStart Guide Net Atlantic s Responsive Email Designer makes it easy to create responsive HTML emails that display perfectly, no matter which device they re viewed on.

More information

&408*Get Free: 'FlexiMenuJS for Dreamweaver Developer Edition - unlimited websites 1 user' by Extend Studio Discount Code

&408*Get Free: 'FlexiMenuJS for Dreamweaver Developer Edition - unlimited websites 1 user' by Extend Studio Discount Code &408*Get Free: 'FlexiMenuJS for Dreamweaver Developer Edition - unlimited websites 1 user' by Extend Studio Discount Code Heya, and you are welcome to this useful eshop. On this webshop you'll find everything

More information

Global Access. User Guide. March Copyright 2015 UPS

Global Access. User Guide. March Copyright 2015 UPS Global Access User Guide March 2015 Copyright 2015 UPS Table of Contents Introduction... 4 1.1 Purpose of this User Guide... 4 1.2 Global Access Platform... 4 1.3 Account Management Dashboard... 5 1.4

More information

Getting Started Guide

Getting Started Guide Getting Started Guide January 2015 Copyright Remarkety 2015 All Rights Reserved Table of Contents 1 INTRODUCTION...4 2 THE REMARKETY DASHBOARD...5 2.1 STATISTICS ELEMENTS... 6 3 CREATING A CAMPAIGN...7

More information

Sign-up Forms Builder for Magento 2.x. User Guide

Sign-up Forms Builder for Magento 2.x. User Guide eflyermaker Sign-up Forms Builder 2.0.5 for Magento 2.x User Guide 2 eflyermaker Dear Reader, This User-Guide is based on eflyermaker s Signup-Form Builder Plugin for Magento ecommerce. What follows is

More information

Joomla! extension JSN EasySlider User Manual

Joomla! extension JSN EasySlider User Manual Joomla! extension JSN EasySlider User Manual (for JSN EasySlider 2.0.x) www.facebook.com/joomlashine www.twitter.com/joomlashine www.youtube.com/joomlashine This documentation is release under Creative

More information

Introduction to iinet. shoppingcart. 2/ 7 Design options

Introduction to iinet. shoppingcart. 2/ 7 Design options Introduction to iinet shoppingcart 2/ 7 Design options Introduction to Shopping Cart 2/7 - Design options An easy-to-use shop system is only half the battle for successful online business. The other half

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

Here s where Voodoo automates your sales, marketing and customer service processes, helping you work smarter, not harder.

Here s where Voodoo automates your sales, marketing and customer service processes, helping you work smarter, not harder. Here s where Voodoo automates your sales, marketing and customer service processes, helping you work smarter, not harder. By Robert Cassard Co-Founder, Voodoo Viral Marketing Systems If you re in charge

More information

Modular: Shopify Theme

Modular: Shopify Theme Modular: Shopify Theme Table of Contents Introduction 2 Top Bar 2 Header/Branding 3 Main Navigation 3 Backgrounds 4 Global Colors 4 Fonts 4 Home Slideshow 5 Home 6 Collection Pages 6 Product Pages 7 Blog

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

Kentico CMS User s Guide 4.1

Kentico CMS User s Guide 4.1 Kentico CMS User s Guide 4.1 2 Kentico CMS User s Guide 4.1 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Google Tag Manager GUIDE. Total Completion Time Pros: 37 min 1hr 52 min Beginners: +4 hrs. blitzmetrics.com Google Tag Manager V2.

Google Tag Manager GUIDE. Total Completion Time Pros: 37 min 1hr 52 min Beginners: +4 hrs. blitzmetrics.com Google Tag Manager V2. Google Tag Manager GUIDE Total Completion Time Pros: 37 min 1hr 52 min Beginners: +4 hrs Google Tag Manager Creating Your Google Tag Manager Account Steps 1-4 take 5 minutes. Step 5 can take 1 hour. Setting

More information

Configuring Hotspots

Configuring Hotspots CHAPTER 12 Hotspots on the Cisco NAC Guest Server are used to allow administrators to create their own portal pages and host them on the Cisco NAC Guest Server. Hotspots created by administrators can be

More information

Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme

Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme Introduction Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme In this Getting Started Guide, you can follow along as a website is built using the MIT DLC Theme. Whether you

More information

CCBill Module for Magento Installation and Configuration

CCBill Module for Magento Installation and Configuration CCBill Module for Magento Installation and Configuration Created: October 8, 2014 Updated: November 13, 2017 2017 CCBill, LLC Plugin v2.0 November 2017 http://www.ccbill.com/ Table of Contents Introduction

More information

- 1 - USER MANUAL FOR ONLINE WEBSITE BUILDER. Version 21.x All rights reserved Page 1 of 64

- 1 - USER MANUAL FOR ONLINE WEBSITE BUILDER. Version 21.x All rights reserved Page 1 of 64 - 1 - USER MANUAL FOR ONLINE WEBSITE BUILDER Version 21.x Copyright @ 2018. All rights reserved Page 1 of 64 - 2 - Table of Contents 1. LOGIN 2. QUICKSTART WIZARD 2.1 Choosing the design Category for creating

More information

Kentico CMS Web Parts

Kentico CMS Web Parts Kentico CMS Web Parts Abuse report Abuse report In-line abuse report Articles Article list Attachments Attachment image gallery Document attachments BizForms BizForm (on-line form) Blogs Comment view Recent

More information

Getting Started: Setting up Your ecommerce Site

Getting Started: Setting up Your ecommerce Site West Virginia University Information Technology Services ecommerce Getting Started Getting Started: Setting up Your ecommerce Site Table of Contents Introduction... 3 Access Your Site... 4 Logging In...

More information

JSN EasySlider Configuration Manual

JSN EasySlider Configuration Manual JSN EasySlider Configuration Manual Introduction Product Overview JSN EasySlider JSN EasySlider is the cutting-edge way to present content on website: Informative - Impressive - Interactive. It helps you

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

Product Manager Toolkit

Product Manager Toolkit Last update: 2017/10/20 09:32 magento_1:product_manager_toolkit https://amasty.com/docs/doku.php?id=magento_1:product_manager_toolkit For more details see the Product Manager Toolkit extension page. Product

More information

Setup your campaigns. Series from HOW TO... Setup your campaigns. Team Management

Setup your campaigns. Series from HOW TO... Setup your campaigns. Team Management Series from Setup your campaigns HOW TO... Setup your campaigns Team Management 1 In this guide... Learn how to create a GetResponse email marketing campaign and manage all the built-in options designed

More information

Creating an with Constant Contact. A step-by-step guide

Creating an  with Constant Contact. A step-by-step guide Creating an Email with Constant Contact A step-by-step guide About this Manual Once your Constant Contact account is established, use this manual as a guide to help you create your email campaign Here

More information

VALO Commerce. Beam Suntory User Guide

VALO Commerce. Beam Suntory User Guide VALO Commerce Beam Suntory User Guide Beam Suntory User Guide Access Your VALO Commerce Site through CONNECT Navigate to https://intlconnect.beamsuntory.com and click on the InnerWorkings tile to access

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

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information