Changes in checkout-affiliates/trunk [13:52]

Size: px
Start display at page:

Download "Changes in checkout-affiliates/trunk [13:52]"

Transcription

1 Changes in checkout-affiliates/trunk [13:52] Location: Files: checkout-affiliates/trunk 6 added 3 modified vendors vendors/class.update.php languages languages/checkout-affiliates-en_us.mo languages/checkout-affiliates-en_us.po affiliates.php (9 diffs) views/settings.php (1 diff) views/metaboxes/clickstracking.php (1 diff) views/metaboxes/ganalytics.php Unmodified Added Removed checkout-affiliates/trunk/affiliates.php Tabular Unified r13 r /* 4 Plugin Name: Checkout - Affiliates Tracking 4 Plugin Name: Checkout - Affiliates & Tracking 5 5 Plugin URI: Author: Tribulant Software 7 7 Author URI: 8 Description: Affiliate tracking capability for the <a href=" Cart plugin</a>. 9 Version: Description: Affiliate (3rd party affiliate software) and sales tracking (Google Analytics ecommerce) capability for the <a href=" Cart plugin</a>. 9 Version: */ if (!defined('ds')) { define('ds', DIRECTORY_SEPARATOR); } 13 if (!defined('checkout_extension_url')) { define('checkout_extension_url', " } function affiliates_activation_hook() { if (!is_plugin_active(plugin_basename($path))) { 19 _e('you must have the Shopping Cart plugin installed and activated in order to use this.', 'wp-checkout'); 20 _e('you must have the Shopping Cart plugin installed and activated in order to use this.', 'checkout-affiliates'); exit(); die(); } else { $versiongood = false; 27 if (version_compare($plugin_version, "1.6.6") >= 0) { 28 if (version_compare($plugin_version, "1.6.8") >= 0) { $versiongood = true; } if ($versiongood == true) { /* Affiliate Options */

2 33 34 add_option('wpcoaffiliates_ga_uacode', "UA-XXXXX-X"); 35 add_option('wpcoaffiliates_ga_pageviews', "N"); 36 add_option('wpcoaffiliates_ga_ecommerce', "N"); } else { 35 _e('the Affiliates Tracking extension requires the Shopping Cart plugin v at least.', 'wp-checkout'); 38 echo sprintf( ('The Affiliates & Tracking extension requires the Shopping Cart plugin %s at least.', 'checkout-affiliates'), "1.6.8"); exit(); die(); } class wpcoaffiliates extends wpcheckoutplugin { function wpcoaffiliates() { function wpcoaffiliates() { $this -> version = "1.2"; 57 $this -> plugin_name = "checkout-affiliates"; if (empty($this -> classes['wpcocommission'])) { } $this -> ga_uacode = $this -> get_option('affiliates_ga_uacode'); 70 $this -> ga_pageviews = ($this -> get_option('affiliates_ga_pageviews') == "Y")? true : false; 71 $this -> ga_ecommerce = ($this -> get_option('affiliates_ga_ecommerce') == "Y")? true : false; return; 74 } function init_textdomain() { 77 if (function_exists('load_plugin_textdomain')) { 78 load_plugin_textdomain($this -> plugin_name, 'checkout-affiliates'. DS. 'languages', dirname(plugin_basename( FILE )). DS. 'languages'); 79 } 80 } function after_plugin_row($plugin_name = null) { 83 $key = $this -> get_option('serialkey'); 84 $update = $this -> vendor('update'); 85 $version_info = $update -> get_version_info(); 86 } function display_changelog() { 89 require_once dirname( FILE ). DS. 'vendors'. DS. 'class.update.php'; 90 $update = new wpcoaffiliates_update(); 91 $changelog = $update -> get_changelog(); echo '<div style="font-family:arial, Helvetica, sans-serif; fontsize:13px;">'; 94 echo $changelog; 95 echo '</div>'; exit(); 98 }

3 function has_update($cache = true) { 101 require_once dirname( FILE ). DS. 'vendors'. DS. 'class.update.php'; 102 $update = new wpcoaffiliates_update(); 103 $version_info = $update -> get_version_info($cache); 104 return version_compare($this -> version, $version_info["version"], '<'); 105 } function check_update($option, $cache = true) { 108 require_once dirname( FILE ). DS. 'vendors'. DS. 'class.update.php'; 109 $update = new wpcoaffiliates_update(); 110 $version_info = $update -> get_version_info($cache); if (!$version_info) { return $option; } $plugin_path = 'checkout-affiliates/affiliates.php'; if(empty($option -> response[$plugin_path])) { 117 $option -> response[$plugin_path] = new stdclass(); 118 } //Empty response means that the key is invalid. Do not queue for upgrade 121 if(!$version_info["is_valid_key"] version_compare($this -> version, $version_info["version"], '>=')){ 122 unset($option -> response[$plugin_path]); 123 } else { 124 $option -> response[$plugin_path] -> url = " 125 $option -> response[$plugin_path] -> slug = $this -> plugin_name; 126 $option -> response[$plugin_path] -> package = $version_info['url']; 127 $option -> response[$plugin_path] -> new_version = $version_info["version"]; 128 $option -> response[$plugin_path] -> id = "0"; 129 } return $option; 132 } function do_ga($which = 'either') { 135 if (!empty($this -> ga_uacode)) { 136 switch ($which) { 137 case 'either' : 138 if (!empty($this -> ga_pageviews)!empty($this -> ga_ecommerce)) { 139 return true; 140 } 141 break; 142 case 'pageviews' : 143 if (!empty($this -> ga_pageviews)) { 144 return true; 145 } 146 break; 147 case 'ecommerce' : 148 if (!empty($this -> ga_ecommerce)) { 149 return true; 150 } 151 break; 152

4 case 'all' 153 : if (!empty($this -> ga_pageviews) &&!empty($this -> ga_ecommerce)) { 154 return true; 155 } 156 break; 157 } 158 } return false; 161 } function order_finished($order_id = null, $pmethod = null, $paid = null) { 164 global $wpdb, $wpcodb, $Order, $Country; 165 global $gaq_ecommerce; if ($this -> do_ga('ecommerce')) { 168 if (!empty($paid) && $paid == "Y") { 169 if (!empty($order_id)) { 170 $wpcodb -> model = $Order -> model; 171 if ($order = $wpcodb -> find(array('id' => $order_id))) { $countryquery = "SELECT `value` FROM `". $wpdb -> prefix. $Country -> table. "` WHERE `id` = '". $order -> bill_country. "'"; 174 $country = $wpdb -> get_var($countryquery); ob_start(); ?> _gaq.push(['_addtrans', 181 '<?php echo $order_id;? >', 182 '<?php echo get_bloginfo('name');?>', 183 '<?php echo $order -> total;?>', 184 '<?php echo $order -> tax;?>', 185 '<?php echo $order -> shipping;?>', 186 '<?php echo $order -> bill_city;?>', 187 '<?php echo $order -> bill_state;?>', 188 '<?php echo $country;? >' 189 ]); _gaq.push(['_tracktrans']); <?php $gaq_ecommerce = ob_get_clean(); 196 } 197 } 198 } 199 } return true;

5 } 204 function wp_head() { 205 global $gaq_ecommerce; if ($this -> do_ga('either')) { 208?> <script type="text/javascript"> 211 var _gaq = _gaq []; 212 _gaq.push(['_setaccount', '<?php echo $this -> ga_uacode;?>']); <?php if ($this -> do_ga('either')) :?> 215 _gaq.push(['_trackpageview']); 216 <?php if (!empty($gaq_ecommerce)) { echo $gaq_ecommerce; }?> 217 <?php endif;?> </script> <?php 222 } } } } // Google Analytics ga.js script 252 if ($this -> do_ga('either')) { 253?> <script type="text/javascript"> 256 (function() { 257 var ga = document.createelement('script'); ga.type = 'text/javascript'; ga.async = true; 258 ga.src = (' == document.location.protocol? ' : ' + '.googleanalytics.com/ga.js'; 259 var s = document.getelementsbytagname('script') [0]; s.parentnode.insertbefore(ga, s); 260 })(); 261 </script> <?php 264 } } add_meta_box('clickstracking', ('Clicks Tracking (Incoming Referrals)', $this -> plugin_name), array($this, 'metabox_clickstracking'), "admin_page_checkout-settings-affiliates", 'normal', 'core'); add_meta_box('salestracking', ('Sales Tracking (Sales Conversions)', $this -> plugin_name), array($this, 'metabox_salestracking'), "admin_page_checkout-settings-affiliates", 'normal', 'core'); 335 add_meta_box('ganalytics', ('Google Analytics Tracking', $this -> plugin_name), array($this, 'metabox_ganalytics'), "admin_page_checkout-settings-affiliates", 'normal', 'core'); do_action('do_meta_boxes', "admin_page_". $this -> sections -> settings_affiliates, "side", $post); $this -> render('views'. DS. 'metaboxes'. DS. 'salestracking', false, true, null, 'affiliates');

6 349 } 350 function metabox_ganalytics() { 351 $this -> render('views'. DS. 'metaboxes'. DS. 'ganalytics', false, true, null, 'affiliates'); 352 } } } $wpcoaffiliates = new wpcoaffiliates(); add_action('init', array($wpcoaffiliates, 'init_textdomain'), 1, 1); 359 add_action('wpco_order_finished', array($wpcoaffiliates, 'order_finished'), 10, 3); 360 add_action('wp_head', array($wpcoaffiliates, 'wp_head'), 10, 1); 361 add_action('wp_footer', array($wpcoaffiliates, 'wp_footer'), 10, 1); 362 add_action('after_plugin_row_checkout-affiliates/affiliates.php', array($wpcoaffiliates, 'after_plugin_row'), 10, 2); 363 add_action('install_plugins_pre_plugin-information', array($wpcoaffiliates, 'display_changelog'), 10, 1); add_filter('transient_update_plugins', array($wpcoaffiliates, 'check_update'), 10, 1); 366 add_filter('site_transient_update_plugins', array($wpcoaffiliates, 'check_update'), 10, 1); ?> checkout-affiliates/trunk/views/settings.php Tabular Unified r5 r <div class="wrap <?php echo $this -> pre;?>"> 14 <h2><?php _e('affiliates Tracking', $this -> plugin_name);?></h2> 14 <h2><?php _e('affiliates & Tracking', $this -> plugin_name);?></h2> <?php $this -> render('settings-navigation', false, true, 'admin');?> checkout-affiliates/trunk/views/metaboxes/clickstracking.php Tabular Unified r5 r <p> 2 <?php _e('clicks (referral) tracking recognizes which affiliate referred the visitor that came from some URL or clicked on banner link.', $this -> plugin_name);?><br/> 3 <?php _e('this code will most likely be Javascript and will be placed in the footer of every page of your site.', $this -> plugin_name);?> 2 <?php _e('clicks (referral) tracking recognizes which affiliate referred the visitor that came from some URL or clicked on banner link.', "checkoutaffiliates");?><br/> 3 <?php _e('this code will most likely be Javascript and will be placed in the footer of every page of your site.', "checkout-affiliates");?> 4 4 </p> <p> 7 <strong><?php _e('type of Code:', $this -> plugin_name);?></strong> <br/> 7 <strong><?php _e('type of Code:', "checkout-affiliates");?></strong> <br/> 8 8 <label><input <?php echo ($this -> get_option('affiliates_clickstracking_type') == "js")? 'checked="checked"' : '';?> type="radio" name="affiliates_clickstracking_type" value="js" id="affiliates_clickstracking_type_js" /> <?php _e('javascript', $this -> plugin_name);?> <small><?php _e('(do NOT paste SCRIPT tags, just the code inside it)', $this -> plugin_name);?></small></label><br/> 9 9 <label><input <?php echo ($this ->

7 get_option('affiliates_clickstracking_type') == "php")? 'checked="checked"' : '';?> type="radio" name="affiliates_clickstracking_type" value="php" id="affiliates_clickstracking_type_php" /> <?php _e('php Code', $this -> plugin_name);?> <small><?php _e('(do NOT include PHP open/close tags, just the PHP code itself)', $this -> plugin_name);?></small></label><br/>

Using Web Analytics for Segmentation & /Display re-targeting

Using Web Analytics for Segmentation &  /Display re-targeting Using Web Analytics for Segmentation & Email/Display re-targeting We combine the maps, schedules and fares for over 50 different train companies across Europe, creating one stop to plan and book your European

More information

Digital Marketing. Gabrielle K. Gabrielli, Ph.D. For Tallahassee Business Leaders 17 February 2011

Digital Marketing. Gabrielle K. Gabrielli, Ph.D. For Tallahassee Business Leaders 17 February 2011 Digital Marketing Gabrielle K. Gabrielli, Ph.D. For Tallahassee Business Leaders 17 February 2011 Ground Rules Silence any technology that makes noise (cell phones, especially!) Participate fully Arrive

More information

from RichoSoft Get Started Install Part 2 Blocking GA Blocking Other Cookie Scripts How It Works License IMPORTANT: You will require:

from RichoSoft Get Started Install Part 2 Blocking GA Blocking Other Cookie Scripts How It Works License IMPORTANT: You will require: Welcome to the Sites - Install/Users Guide. What is in this pack?: Zip File Pack includes: 3 Javacscript Libraries. Code to aid the prevention of Cookie writing by Scripts including Google Analytics. A

More information

Personalizing Google Analytics

Personalizing Google Analytics University of South Carolina Scholar Commons CONTENTdm Users Group Meeting, May 2014 CONTENTdm Users Group Meeting, May 2014 Personalizing Google Analytics Josh Wilson State Library of North Carolina Follow

More information

from RichoSoft Get Started Install Part 2 Blocking GA Blocking Other Cookie Scripts Cookie Event List Page Publishing How It Works License

from RichoSoft Get Started Install Part 2 Blocking GA Blocking Other Cookie Scripts Cookie Event List Page Publishing How It Works License Welcome to the Sites - Install/Users Guide. What is in this pack?: Zip File Pack includes: 3 Javacscript Libraries. Code to aid the prevention of Cookie writing by Scripts including Google Analytics. A

More information

Google Analytics for Government

Google Analytics for Government Google Analytics for Government Learn How to Analyze Meaningful Metrics for Your Agency December 14, 2012 Authored by: Sarah Kaczmarek Google Analytics for Government Learn How to Analyze Meaningful Metrics

More information

The ISP Column A monthly column on things Internet

The ISP Column A monthly column on things Internet The ISP Column A monthly column on things Internet May 2011 Geoff Huston Testing IPv6 for World IPv6 Day Over the past few months in this column I've devoted some time to looking at IPv6. The reason why

More information

MYFATOORAH. Magento 1.8 & 1.9. Othman Hussein.

MYFATOORAH. Magento 1.8 & 1.9. Othman Hussein. Magento 1.8 & 1.9 Othman Hussein info@myfatoorah.com 1 Table of Contents: Installation Steps.....3 Merchant Configuration Details.....6 Payment Request.7 Test Card Details.10 Live URL.10 2 Installation

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

Marketing Guide 3: Online Marketing

Marketing Guide 3: Online Marketing Marketing Guide 3: Online Marketing Online marketing is an extremely valuable tool. After all, you do have an online business! In this manual we will cover some of the many ways that you can market yourself

More information

John Biancamano Inbound Digital LLC InboundDigital.net

John Biancamano Inbound Digital LLC InboundDigital.net John Biancamano Inbound Digital LLC 609.865.7994 InboundDigital.net About Me Owner of Inbound Digital, LLC digital marketing consulting and training: websites, SEO, advertising, and social media. Senior

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

Overview What s Google Analytics? The Google Analytics implementation formula. Steps involved in installing Google Analytics.

Overview What s Google Analytics? The Google Analytics implementation formula. Steps involved in installing Google Analytics. Google Analytics Overview What s Google Analytics? The Google Analytics implementation formula. Steps involved in installing Google Analytics. Tracking events, campaigns and ecommerce data. Creating goals

More information

FREE Ways to Improve Digital Marketing in 15 Minutes per Week. Gabrielle K. Gabrielli, Ph.D.

FREE Ways to Improve Digital Marketing in 15 Minutes per Week. Gabrielle K. Gabrielli, Ph.D. FREE Ways to Improve Digital Marketing in 15 Minutes per Week Gabrielle K. Gabrielli, Ph.D. 13 November 2012 Introductions Name Business(es), organization(s) What is your brand? Experience with marketing

More information

Google Universal Analytics Documentation

Google Universal Analytics Documentation Google Universal Analytics Documentation www.web-cooking.net 1 Google Universal Analytics extension for Magento allows you to use GUA easily on your store. Juste enable it, and fill your account ID, and

More information

Google Analytics Health Check Checklist: Property Settings

Google Analytics Health Check Checklist: Property Settings Google Analytics Health Check Checklist: Property Settings One of the reasons Next Steps Digital exists is because we not only want to dispel common misconceptions about Google Analytics (and everything

More information

django-ad-code Documentation

django-ad-code Documentation django-ad-code Documentation Release 1.0.0 Mark Lavin Apr 21, 2018 Contents 1 Installation 3 2 Documentation 5 3 License 7 4 Contributing 9 5 Contents 11 5.1 Getting Started..............................................

More information

Bridging the Gap from Wikipedia to Scholarly Sources: A Simple Discovery Tool

Bridging the Gap from Wikipedia to Scholarly Sources: A Simple Discovery Tool Bridging the Gap from Wikipedia to Scholarly Sources: A Simple Discovery Tool BARBARA ARNETT and VALERIE FORRESTAL S. C. Williams Library, Stevens Institute of Technology, Hoboken, New Jersey, USA Abstract:

More information

Getting Started Guide. Prepared by-fatbit Technologies

Getting Started Guide. Prepared by-fatbit Technologies Getting Started Guide Prepared by-fatbit Technologies 1 Contents 1. Manage Settings... 3 1.1. General... 4 1.2. Local... 6 1.3. SEO... 7 1.4. Option... 8 1.5. Live Chat... 19 1.6. Third Part API s... 20

More information

Integrating Abila Fundraising Online form widget data with Google Analytics

Integrating Abila Fundraising Online form widget data with Google Analytics Integrating Abila Fundraising Online form widget data with Google Analytics Overview For many of our customers, the successful submission of a form widget represents the end of a very important chain of

More information

Installation Guide. Sitecore Federated Experience Manager. Installation & Configuration Guide

Installation Guide. Sitecore Federated Experience Manager. Installation & Configuration Guide Sitecore Federated Experience Manager Installation Guide Rev: 23 August 2014 Sitecore Federated Experience Manager Installation Guide Installation & Configuration Guide Table of Contents Chapter 1 Overview...

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

ethnio tm IMPLEMENTATION GUIDE ETHNIO, INC W SUNSET BLVD LOS ANGELES, CA TEL (888) VERSION NO. 3 CREATED JUL 14, 2017

ethnio tm IMPLEMENTATION GUIDE ETHNIO, INC W SUNSET BLVD LOS ANGELES, CA TEL (888) VERSION NO. 3 CREATED JUL 14, 2017 ethnio tm IMPLEMENTATION GUIDE VERSION NO. 3 CREATED JUL 14, 2017 ETHNIO, INC. 6121 W SUNSET BLVD LOS ANGELES, CA 90028 TEL (888) 879-7439 SUMMARY Getting Ethnio working means placing one line of JavaScript

More information

Tabs within Divi Theme Options include: Table of Contents. Divi Theme Options... 1 General Tab... 2 Navigation Tab... 6

Tabs within Divi Theme Options include: Table of Contents. Divi Theme Options... 1 General Tab... 2 Navigation Tab... 6 Divi Theme Options To get to Divi Theme Options select Divi from the side bar navigation from within your WordPress dashboard. Tabs within Divi Theme Options include: General, Navigation, Layout, Ads,

More information

Optimizing your Google Analytics setup in 9 steps

Optimizing your Google Analytics setup in 9 steps Optimizing your Google Analytics setup in 9 steps October 2, 2012 PRNews Social Media Measurement Conference NYC Alhan Keser, Blue Fountain Media Web Design / Development / Online Marketing Blue Fountain

More information

AMP Add-on for JReviews User Guide

AMP Add-on for JReviews User Guide AMP Add-on for JReviews User Guide www.jreviews.com 1 Table of Contents 1 Overview 1.1 What is AMP? 1.2 Limitations of AMP 1.3 Add-on features 2 Getting started 2.1 Dependencies 2.1.1 Joomla 2.1.2 WordPress

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

WordPress and ecommerce. A match made in heaven?

WordPress and ecommerce. A match made in heaven? WordPress and ecommerce A match made in heaven? $165.4 Billion merchant accounts inventory security PCI Compliance ecommerce is hard! payment gateways shopping carts ssl certificates Today s Outline Onsite

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

Google Tag Manager. Google Tag Manager Custom Module for Magento

Google Tag Manager. Google Tag Manager Custom Module for Magento Google Tag Manager Custom Module for Magento TABLE OF CONTENTS Table of Contents Table Of Contents...2 1. INTRODUCTION...3 2. Overview...3 3. Requirements...3 4. Features...4 4.1 Features accessible from

More information

TRACKING YOUR WEBSITE WITH GOOGLE ANALYTICS CHRIS EDWARDS

TRACKING YOUR WEBSITE WITH GOOGLE ANALYTICS CHRIS EDWARDS TRACKING YOUR WEBSITE WITH GOOGLE ANALYTICS CHRIS EDWARDS Hi, I am Chris Edwards Data Nerd & Agency Owner Website Developer 18 years WordPress Developer 6 years Google Analytics 13 years Digital Marketer/SEO

More information

What is Google Analytics? What Can You Learn From Google Analytics? How Can Google Analytics Help Your Business? Agenda

What is Google Analytics? What Can You Learn From Google Analytics? How Can Google Analytics Help Your Business? Agenda What is Google Analytics? What Can You Learn From Google Analytics? How Can Google Analytics Help Your Business? Agenda Google Analytics Google Analytics is a service offered by Google that generates detailed

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

Inntopia & Google Analytics: Tracking from Source to Conversion

Inntopia & Google Analytics: Tracking from Source to Conversion Inntopia & Google Analytics: Tracking from Source to Conversion Best practices for tracking visitors with Inntopia s IBE & more The next 60 minutes Why Track Visitors? Using Google Analytics on your site

More information

Advanced Web Metrics with Google Analytics

Advanced Web Metrics with Google Analytics Advanced Web Metrics with Google Analytics Brian Clifton Wiley Publishing, Inc. Contents Introduction xvii Part I Measuring Success 1 Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business

More information

Technical Specifications Leaderboard + Mobile Leaderboard. 27/12/2018 Tech Specs 1

Technical Specifications Leaderboard + Mobile Leaderboard. 27/12/2018 Tech Specs 1 27/12/2018 Tech Specs 1 27/12/2018 Screenshot 2 Format Device Width*Height Extensions Max. weight Animation Clicktag Leaderboard Desktop / Tablet 728*90 HTML5/GIF/JPG 70 kb 3 loops in 15 clicktag Mobile

More information

SuprCloakr v1.2s. Documentation. Author: tech_09

SuprCloakr v1.2s. Documentation. Author: tech_09 SuprCloakr v1.2s Documentation Author: tech_09 http://www.suprcloakr.com Contents Installation... 3 Global settings... 4 Creating a campaign... 5 Cloak what?... 5 Cloak who?... 6 Cloak How?... 7 Installation

More information

Boosting Campaign Performance Through Web Analytics. David Kamerer, PhD, APR Loyola University Chicago

Boosting Campaign Performance Through Web Analytics. David Kamerer, PhD, APR Loyola University Chicago Boosting Campaign Performance Through Web Analytics David Kamerer, PhD, APR Loyola University Chicago An embarrassing question: CEO: I give you resources to manage our website; what value have you returned

More information

Easy Conversion Tracking with Magento Commerce

Easy Conversion Tracking with Magento Commerce Easy Conversion Tracking with Magento Commerce Page 2 David Deppner President, Psyberware Page 3 Agenda A Practical "How To" Guide Better Reporting with Magento 2's Google Tag Manager Implementation Google

More information

J2T Points & Rewards Extension for Magento 2 Documentation for v. 2.0.x

J2T Points & Rewards Extension for Magento 2 Documentation for v. 2.0.x J2T Points & Rewards Extension for Magento 2 Documentation for v. 2.0.x Summary How to install...2 How to configure... 4 Description of configuration fields... 5 Statistics page... 9 Client points... 9

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

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

Lead Rocket Training Manual

Lead Rocket Training Manual Lead Rocket Training Manual Discover the Most Incredible Bonus Gift Ever! Just go to http://undergroundmarketers.com/bonus This guide is devised into 3 parts the first section details how to install, activate

More information

Using Google Tag Manager to view CUI tracking statistics. (v1)

Using Google Tag Manager to view CUI tracking statistics. (v1) Using Google Tag Manager to view CUI tracking statistics (v1) ACTIVE Network, LLC 2016 Active Network, LLC, and/or its affiliates and licensors. All rights reserved. No part of this publication may be

More information

WORDPRESS PLUGIN DEVELOPMENT

WORDPRESS PLUGIN DEVELOPMENT WORDPRESS PLUGIN DEVELOPMENT What Is a Plugin? WordPress plugins are apps that allow you to add new features and functionality to your WordPress website. Exactly the same way as apps do for your smartphone.

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

Shopping Basket and Order Requirements

Shopping Basket and Order Requirements Page 1 of 41 Page 2 of 41 1. The user can browse the site and select the product items to be added to the Shopping basket. Use the Catalog link to search and add products to the shopping basket or click

More information

Access the Google Analytics Demo Account. b/demoaccount

Access the Google Analytics Demo Account.   b/demoaccount Access the Google Analytics Demo Account https://analytics.google.com/analytics/we b/demoaccount Introduction to Web Traffic Assessment with Google Analytics Lisa Gayhart User Experience Librarian UX Lab

More information

OCTOPUS CART QUICK GUIDE By: ELEOS WEB PTE LTD 19 KIM KEAT ROAD #04-07 SINGAPORE

OCTOPUS CART QUICK GUIDE By: ELEOS WEB PTE LTD 19 KIM KEAT ROAD #04-07 SINGAPORE OCTOPUS CART QUICK GUIDE By: ELEOS WEB PTE LTD 19 KIM KEAT ROAD #04-07 SINGAPORE 328804 1 OCTOCART WEB MANAGEMENT BACKEND QUICK GUIDE 1.0 INTRODUCTION Thank you for purchasing Octo cart a highly templated

More information

Webshop Plus! v Pablo Software Solutions DB Technosystems

Webshop Plus! v Pablo Software Solutions DB Technosystems Webshop Plus! v.2.0 2009 Pablo Software Solutions http://www.wysiwygwebbuilder.com 2009 DB Technosystems http://www.dbtechnosystems.com Webshos Plus! V.2. is an evolution of the original webshop script

More information

Google Universal Analytics Integration Set-up

Google Universal Analytics Integration Set-up Google Universal Analytics Integration Set-up Ifbyphone s Google Universal Analytics Integration enables you to track your phone calls and push the data into the standard and custom reports in Universal

More information

Intro to Google Analytics

Intro to Google Analytics Intro to Google Analytics MSBDC - April 25, 2016 Overview Introductions Why Google Analytics? Setting Up & Defining Goals Overview of Reports Tips & Tricks Who Are You? Do you use Google Analytics? What

More information

WIKISYS TECHNOLOGY INTERNSHIP PROGRAM

WIKISYS TECHNOLOGY INTERNSHIP PROGRAM WIKISYS TECHNOLOGY INTERNSHIP PROGRAM WEB DESGINING Create layout Design Photoshop Html 5 CSS 3 Responsive Website Bootstrap GIF Animation Flash Dreamweaver Java Script JQuery FTP File Uploading Print

More information

Google Analytics for Sellers

Google Analytics for Sellers Google Analytics for Sellers What we will cover 1 Setting up Google Analytics for Sellers 2 But first, the disclaimers 3 Navigating through Google Analytics 4 What is the traffic to my shop & items? 5

More information

B. V. Patel Institute of BMC & IT 2014

B. V. Patel Institute of BMC & IT 2014 Unit 1: Introduction Short Questions: 1. What are the rules for writing PHP code block? 2. Explain comments in your program. What is the purpose of comments in your program. 3. How to declare and use constants

More information

SEO PLUS USER GUIDE Version 1.3

SEO PLUS USER GUIDE Version 1.3 support@magestore.com sales@magestore.com Phone: 084.4.8585.4587 SEO PLUS USER GUIDE Version 1.3 Table of Contents 1. INTRODUCTION... 3 2. HOW TO USE... 5 3. HOW TO CONFIGURE... 21 SEO Plus v1.3 2 1. INTRODUCTION

More information

You can use these quick links, and the links on the left sidebar to navigate quickly around the User Manual.

You can use these quick links, and the links on the left sidebar to navigate quickly around the User Manual. USER MANUAL Fooman Google Analytics + (Magento 2) Quick Links 1. Set Up in Google 2. Set Up in Magento 3. Troubleshooting You can use these quick links, and the links on the left sidebar to navigate quickly

More information

OpenCart. E-commerce platform Prepared by: Abeer AlDayel and Nouf AlRomaih

OpenCart. E-commerce platform Prepared by: Abeer AlDayel and Nouf AlRomaih OpenCart E-commerce platform Prepared by: Abeer AlDayel and Nouf AlRomaih Introduction OpenCart is free open source ecommerce platform for online merchants. It is a module based system which allows users

More information

AdBack. Release 1.1.0

AdBack. Release 1.1.0 AdBack Release 1.1.0 May 30, 2017 FAQ 1 FAQ 1 1.1 What is AdBack?............................................. 1 1.2 What is an adblocker user?........................................ 1 1.3 Why should

More information

PIMCORE TRAINING GUIDE

PIMCORE TRAINING GUIDE PIMCORE TRAINING GUIDE VERSION 1.0, MAY 2017 Table of Contents 1. Welcome to Pimcore... 3 1.1. Pimcore training offerings... 3 2. Pimcore Basic Training (2 Days)... 4 2.1. Pre-requisites... 4 2.2. Training

More information

Analyzing Google Analytics

Analyzing Google Analytics May 2018 Analyzing Google Analytics 1. Primary & Secondary Dimensions 2. Bounce Rate & Other Data Definitions 3. Events 4. Goals 5. Help & Training Difference Between Dimensions & Metrics Primary Dimensions

More information

APPLICATION USER GUIDE

APPLICATION USER GUIDE APPLICATION USER GUIDE Application: Analytics Version: 1.0 Description: Analytics provides a complete view of your website analytics and usage. Page 2 of 59 Analytics 1.0 Summary Contents 1 ANALYTICS...

More information

Getting to Grips with WordPress

Getting to Grips with WordPress Getting to Grips with WordPress Part of the CMS Summit Series #CMSdays CMSdays The Plan Serving things up Old Skool Install Install with style Staying fresh Making it easier Break Custom fields Plugging

More information

InstaMember USER S GUIDE

InstaMember USER S GUIDE InstaMember USER S GUIDE InstaMember Licensing API Guide 1 InstaMember Licensing API Guide The InstaMember licensing feature is designed to integrate seamlessly with your web applications or scripts. It

More information

estore Solution Stack User s Guide Version 4.0 SP1

estore Solution Stack User s Guide Version 4.0 SP1 estore Solution Stack User s Guide Version 4.0 SP1 March, 2012 Copyright Copyright 2012 Nodus Technologies, Inc. All rights reserved. Your right to copy this documentation is limited by copyright law and

More information

CMShortURL Documentation

CMShortURL Documentation CMShortURL Documentation Release 1.0.0 CMExtension August 08, 2015 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 1.2 Features..................................................

More information

Shipping Availability Magento Extension by PIXLOGIX USER GUIDE Copyright 2017 Pixlogix.com All rights reserved

Shipping Availability Magento Extension by PIXLOGIX USER GUIDE Copyright 2017 Pixlogix.com All rights reserved support@pixlogix.com Shipping Availability Magento Extension by PIXLOGIX USER GUIDE All rights reserved Table of Contents 1. Installation Process... 3 2. Shipping Availability Configuration... 4 2.1 General...

More information

Release notes 3.3. silver.solutions GmbH Färberstr Berlin. Telefon:

Release notes 3.3. silver.solutions GmbH Färberstr Berlin. Telefon: Release notes 3.3 silver.solutions GmbH Färberstr. 26 12555 Berlin Telefon: 030.65.48.19.90 contact@silversolutions.de 1. Silver.e-shop version 3.3... 3 1.1. Server requirements... 3 1.2. New features

More information

August 11, 2008 August 18, 2008 August 25, 2008 September 1, 2008 Sep. Visitors 7,000 3,500. Content Overview. Ecommerce Conversion Rate 0.00% 0.

August 11, 2008 August 18, 2008 August 25, 2008 September 1, 2008 Sep. Visitors 7,000 3,500. Content Overview. Ecommerce Conversion Rate 0.00% 0. Dashboard 9,000 9,000 4,500 4,500 Site Usage 156,065 557,325 Pageviews 3.57 Pages/Visit 14.98% Bounce Rate 00:03:10 Avg. Time on Site 23.51% % New Visitors Overview Map Overlay world Visitors 7,000 7,000

More information

Quick Online Shop Documentation

Quick Online Shop Documentation Quick Online Shop Documentation In the following tutorial, you will get a complete step by step guide of using Quick Online Shop WordPress theme for building an amazon affiliate store site. All steps have

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

Day 3: Attribution, Analytics & AdWords

Day 3: Attribution, Analytics & AdWords Day 3: Attribution, Analytics & AdWords LEGAL AND CONFIDENTIALITY INFORMATION WELCOME Every effort was made to ensure that the information in this presentation is complete and accurate at the time of instruction.

More information

PRAjax PHP Reflected Ajax Developer Manual

PRAjax PHP Reflected Ajax Developer Manual PRAjax PHP Reflected Ajax Developer Manual Index PRAjax PHP Reflected Ajax... 1 Index... 2 What is PRAjax?... 3 PRAjax in short... 3 Schematic overview... 4 Introduction... 5 Requirements... 5 Installation...

More information

Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings

Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings Portal > Knowledgebase > I am a Supplier/Decorator > ESP Websites > Website Settings Website Settings Tamika C - 2017-02-07 - in ESP Websites Website Settings The Website Settings section enables you to

More information

WIRIS quizzes 2. Integration guide

WIRIS quizzes 2. Integration guide WIRIS quizzes 2. Integration guide Document Release: 1.2 2016 may, Maths for More www.wiris.com Contact: support@wiris.com Summary. This guide explains a set of scenarios solved with WIRIS quizzes 2. It

More information

Technical Requirements

Technical Requirements Technical Requirements Annonces pleinchamp com Delivery of elements 5 working days before the date of posting your campaign Contact : service-coordination@mb-diffusion.com General terms and conditions:

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

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

Google Universal Analytics Enhanced E-commerce Tracking - Installation/Set-up Guide

Google Universal Analytics Enhanced E-commerce Tracking - Installation/Set-up Guide Google Universal Analytics Enhanced E-commerce Tracking - Installation/Set-up Guide 1. Disable Compilation Mode: To check that this is disabled, go to System- >Tools->Compilation. If the compiler status

More information

MANUAL FORCED MATRIX MLM PRO. v2.5

MANUAL FORCED MATRIX MLM PRO. v2.5 MANUAL FORCED MATRIX MLM PRO v2.5 TABLE OF CONTENTS Section Page # Getting Started 3 Overview 3 Installation 3 WP Admin Settings 4 Dashboard 4 Create First User 4 Settings Overview 5 General Settings 7

More information

SYLLABUS FOR BUILDING YOUR ecommerce STORE WITH WORDPRESS

SYLLABUS FOR BUILDING YOUR ecommerce STORE WITH WORDPRESS SYLLABUS FOR BUILDING YOUR ecommerce STORE WITH WORDPRESS Bud Kraus Joy of WP joyofwp.com bud@joyofwp.com 973 479 2914 The WooCommerce plugin for WordPress allows you to create any kind of ecommerce Store.

More information

Integration Manual Valitor WooCommerce Module

Integration Manual Valitor WooCommerce Module Integration Manual Valitor WooCommerce Module Integrating with Valitor could not be easier. Choose between Hosted, HTTP POST or XML integration options, or alternatively browse our selection of client

More information

WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation

WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation WP Voting Plugin - Ohiowebtech Video Extension - Youtube Documentation Overview This documentation includes details about the WP Voting Plugin - Video Extension Plugin for Youtube. This extension will

More information

MotoPress Restaurant Menu Plugin Documentation

MotoPress Restaurant Menu Plugin Documentation MotoPress Restaurant Menu Plugin Documentation Updated on January 11, 2017 Overview Addons Quick start guide Installation Create a menu item Create a menu category Add a menu tag Add ingredients Apply

More information

WOOCOMMERCE VISMA INTEGRATION Last Modified: 2017-Mar-28

WOOCOMMERCE VISMA INTEGRATION Last Modified: 2017-Mar-28 Contact us at: support@uniwin.se WOOCOMMERCE VISMA INTEGRATION Last Modified: 2017-Mar-28 Reading guide I will mark all the tabs like this: This is a tab Important marks will be highlighted in yellow text.

More information

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F.

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. ! Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. Save and complete! A. Identify version number A.1. Log in to Admin

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

rm -rf pub/static/*; rm -rf var/view_preprocessed/*; php -f bin/magento setup:staticcontent:deploy

rm -rf pub/static/*; rm -rf var/view_preprocessed/*; php -f bin/magento setup:staticcontent:deploy Follow Up Email current How to install extension 1. Backup your store database and web directory. 2. Login to SSH console on your server and navigate to root directory of Magento 2 store. 3. Copy installation

More information

Vitacress Group Cookie Policy

Vitacress Group Cookie Policy Vitacress Group Cookie Policy COOKIE POLICY WHAT ARE COOKIES? Cookies are small files which are stored on your computer. They are designed to hold a modest amount of data specific to your website visit

More information

Using echoice Affiliate Tools

Using echoice Affiliate Tools Using echoice Affiliate Tools echoice Affiliate Enquiry Form Short Form To add the Affiliate Enquiry Form, simply access the embedded code in: http://www.echoice.com.au/partners/online-affiliates/affiliate-enquiry-form/

More information

JavaScript: Introduction, Types

JavaScript: Introduction, Types JavaScript: Introduction, Types Computer Science and Engineering College of Engineering The Ohio State University Lecture 19 History Developed by Netscape "LiveScript", then renamed "JavaScript" Nothing

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

Creating Campaign Tracking URLs

Creating Campaign Tracking URLs Creating Campaign Tracking URLs Best Practices Guide to Creating Campaign Tracking URLs Feb 2018 ToTheWeb LLC (650) 627.8800 success@totheweb.com STEPS 1 What is a Campaign Tracking URL? 2 When Should

More information

Google Analytics. Tips & Tricks for Your Business. Interactive Marketing Summit. Laurel Highlands Visitor Bureau

Google Analytics. Tips & Tricks for Your Business. Interactive Marketing Summit. Laurel Highlands Visitor Bureau Google Analytics Tips & Tricks for Your Business Session Topics: 1. Getting to know the dashboard 2. Metrics and dimensions 3. What reports to use 4. User tips to segment your data 5. Tracking your paid

More information

The 7 Dollar Mall Getting Started

The 7 Dollar Mall Getting Started The 7 Dollar Mall Getting Started http://www.the7dollarmall.com/ Contents Introduction... 3 $7 Secrets (background)... 4 What is The 7 Dollar Mall?... 4 How Does The 7 Dollar Mall Work?... 5 The 7 Dollar

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

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

Webcart Documentation

Webcart Documentation Webcart Documentation Webcart E-Commerce Solution Webcart is a powerful multi-store shopping cart software that can help you to start and manage your online stores with ease. It supports multiple storefronts

More information

Meijer.com Style Guide

Meijer.com Style Guide TABLE OF CONTENTS Meijer.com Style Guide John Green Information Architect November 14, 2011 1. LAYOUT... 2 1.1 PAGE LAYOUT... 2 1.1.1 Header... 2 1.1.2 Body / Content Area... 3 1.1.2.1 Top-Level Category

More information