WC Auto-Ship for WooCommerce

Size: px
Start display at page:

Download "WC Auto-Ship for WooCommerce"

Transcription

1 WC Auto-Ship for WooCommerce Version Published: July 24, Patterns In the Cloud, ( Contact for additional support. Hosting Requirements Operating System: Linux 64-bit or equivalent Web Server: Apache Web Server PHP: PHP Database: MySQL Server Wordpress Version: Wordpress WooCommerce Version: WooCommerce Required PHP extensions php-curl ( php-json ( Minimum PHP settings memory_limit 256M max_execution_time 600 Installation A. Install and configure required plugins 1. Extract the archive to the plugins folder of your Wordpress site (usually /wpcontent/plugins/). 2. Log in to Wordpress as an administrator and navigate to the Plugins list. Find and activate WC Autoship. 3. In the Wordpress dashboard, navigate to WooCommerce > Settings > WC Autoship. Complete the WC Autoship Settings form. See reference sections A and B for field descriptions. 4. Navigate to WooCommerce > Settings > Checkout > WC Autoship PayPal Payments 1 of 7

2 5. Complete the fields in the WC Autoship PayPal Payments settings form. See reference section C for field descriptions. Make sure that this payment gateway is enabled. 6. Edit a product within WooCommerce and open the WC Auto-Ship tab. Select to Enable Autoship and save your changes. B. Install a Payment Gateway Integration WC Autoship requires specialized payment gateway integrations that contain methods to tokenize payment methods and charge customers on a recurring basis. Official WC Autoship payment gateway integrations can be found at ( Basic Use Creating Autoship Products WC Autoship uses the Simple and Variable products that come standard with WooCommerce. If you already have products in your database, skip to the next section. To create a new product, follow the instructions below. 1. Log in to Wordpress as an administrator and navigate to the WooCommerce > Products page. 2. Create a Simple product by following the instructions in the WooCommerce documentation ( Scheduling an Autoship Order 1. Navigate to a product page. 2. Select one of the Auto-Ship options that were created on the plugin s settings page. 3. Add the product to the cart. 4. Complete the checkout process. The products that were added to autoship will appear in the My Autoship Schedules section of the My Account page after a successful checkout. Important Notes Autoship settings must not be changed if customers have scheduled autoship orders in the system. This will cause desynchronization errors and a loss of autoship customer data. Some customers have reported random errors using the WooCommerce USPS Shipping plugin. Adding Payment Gateways 2 of 7

3 Autoship payment gateways must be compatible with both the WooCommerce Payment Gateway API ( and the WC Autoship Payment Gateway API. Implementing the WC Autoship Payment Gateway API 1. Locate the existing WC Autoship PayPal Gateway implementation in the plugin folder woocommerce-autoship-paypal-payments. You may use this plugin as a reference. 2. Locate the file containing the WC_Autoship_Payment_Gateway class at woocommerce-autoship/classes/payment-gateway/wc-autoship-paymentgateway.php. This class will be used to store and retrieve customer payment information and process payments. 3. Write a class that extends the WC Autoship class WC_Autoship_Payment_Gateway. Implement all required methods for WC_Autoship_Payment_Gateway. See the existing WC Autoship PayPal Gateway implementation, WC_Autoship_PayPal_Gateway, located at woocommerce-autoship-paypal-payments/classes/wc-autoship-paypalgateway.php as a reference. See the documentation for the WooCommerce payment gateway API ( for help implementing the WC_Payment_Gateway class. The prototype for WC_Autoship_Payment_Gateway class is shown below. <? php abstract class WC_Autoship_Payment_Gateway extends WC_Payment_Gateway { * Get the field names posted by the payment_fields form string[] abstract public function get_payment_field_names(); * Get the payment method description for a customer in HTML format WC_Autoship_Customer $customer string abstract public functionu n c t i o n get_payment_method_description( WC_Autoship_Custo mer $customer ); * Process an order using a stored payment method WC_Order $order WC_Autoship_Customer $customer WC_Autoship_Payment_Response abstract public functionu n c t i o n process_stored_payment( WC_Order $order, WC_Autos hip_customer $customer ); * Store a payment method WC_Autoship_Customer $customer 3 of 7

4 array $payment_fields boolean abstract public functionu n c t i o n store_payment_method( WC_Autoship_Customer $custo mer, $payment_fields ); }?> Template Overrides WC Auto-Ship allows the current theme to override any template located in the main plugin folder at woocommerce-autoship/templates. To override a template file, create the same relative folder structure within your current theme folder: [your-themefolder]/woocommerce-autoship/templates Example: override the product page auto-ship cart options template 1. Locate the autoship options template in the plugin folder: woocommerce-autoship/templates/product/autoship-options.php 2. Create the template override folder structure in your current theme: [your-theme-folder]/woocommerce-autoship/templates/product 3. Copy the template file woocommerce-autoship/templates/product/autoshipoptions.php to your theme folder at [your-theme-folder]/woocommerceautoship/templates/product/autoship-options.php WC Auto-Ship will now implement the autoship-options.php template file from your theme folder! Reference A. Autoship Settings Enter general system settings for autoship Field Name License Key Management page message (HTML) No Autoship Message (HTML) My Autoship Menu Page The software license key issued to you after purchase. A custom message to display on Autoship management pages. A custom message to display for customers with no autoship schedules. The page displaying the autoship menu. 4 of 7

5 Field Name Autoship Schedules Page The page displaying the autoship schedules. Autoship Billing Page The page displaying the autoship billing form. Autoship Shipping Page The page displaying the autoship shipping form. B. Autoship Product Options Autoship options for individual products. Field Name Enable Autoship Enable autoship for the product. Autoship price (optional) An optional price for this product when autoship is selected Min Autoship Frequency(days) The minimum autoship frequency that can be selected Max Autoship Frequency(days) The maximum autoship frequency that can be selected Default Autoship Frequency The autohip frequency option that is selected by default C. WC Auto-Ship Shortcodes Autoship site content is generated with Wordpress shortcodes. See the documentation for the Wordpress Shortcode API for more information: ( Shortcode The main menu for autoship schedules, billing, and shipping. Autoship schedules management form Autoship billing management form [autoshipmenu] [autoshipschedules] [autoshipbilling] [autoshipshipping] Autoship shipping management form 5 of 7

6 Shortcode [autoshipmessage] A custom message to display on autoship pages from the "Management page message (HTML)" setting D. WC Autoship Wordpress Database Schema {wp_}wc_autoship_customers id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, payment_gateway_id VARCHAR(100) NOT NULL DEFAULT '', payment_method_id VARCHAR(255) DEFAULT NULL, payment_method_data BLOB DEFAULT NULL, shipping_first_name VARCHAR(20) NOT NULL DEFAULT '', shipping_last_name VARCHAR(20) NOT NULL DEFAULT '', shipping_company VARCHAR(50) DEFAULT NULL, shipping_address_1 VARCHAR(255) NOT NULL DEFAULT '', shipping_address_2 VARCHAR(255) NOT NULL DEFAULT '', shipping_city VARCHAR(20) NOT NULL DEFAULT '', shipping_postcode VARCHAR(10) NOT NULL DEFAULT '', shipping_country CHAR(2) NOT NULL DEFAULT '', shipping_state VARCHAR(20) NOT NULL DEFAULT '', shipping_method VARCHAR(50) NOT NULL DEFAULT '', shipping_method_title VARCHAR(100) NOT NULL DEFAULT '', created_time DATETIME NOT NULL, modified_time DATETIME NOT NULL {wp_}wc_autoship_schedules id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, customer_id BIGINT(20) UNSIGNED NOT NULL, autoship_option_id VARCHAR(10) NOT NULL, autoship_status TINYINT(1) DEFAULT {\$status_active}, last_order_date DATE NOT NULL, 6 of 7

7 next_order_date DATE NOT NULL, created_time DATETIME NOT NULL, modified_time DATETIME NOT NULL, UNIQUE KEY wc_autoship_user_option (customer_id, autoship_option_id) {wp_}wc_autoship_schedule_items id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, schedule_id BIGINT(20) UNSIGNED NOT NULL, product_id BIGINT(20) UNSIGNED NOT NULL, variation_id BIGINT(20) UNSIGNED DEFAULT NULL, qty TINYINT(1) UNSIGNED NOT NULL DEFAULT 1, customer_label VARCHAR(255) NOT NULL DEFAULT '', created_time DATETIME NOT NULL, modified_time DATETIME NOT NULL 7 of 7

Documentation of Reward Points for Woocommerce. Installation of Reward Points for Woocommerce

Documentation of Reward Points for Woocommerce. Installation of Reward Points for Woocommerce Documentation of Reward Points for Woocommerce Installation of Reward Points for Woocommerce Installation Install Word Press from http://codex.wordpress.org/installing_wordpress. Upload via FTP : - Unzip

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

SEGPAY WooCommerce Plugin SETUP

SEGPAY WooCommerce Plugin SETUP SEGPAY WooCommerce Plugin SETUP Client Documentation Version 1.1 May 11, 2017 Table of Contents Version Tracking... 3 Summary... 4 Pre-Installation Checklist... 4 Plugin Installation... 5 Testing... 9

More information

DPD API Reference Documentation

DPD API Reference Documentation DPD API Reference Documentation Release 2.0 Portal Labs, LLC May 09, 2017 CONTENTS 1 DPD API 3 1.1 About................................................... 3 2 Authentication 5 3 Limitations 7 3.1 Pagination................................................

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 User Manual By Design N Buy

WooCommerce User Manual By Design N Buy By Design N Buy Introduction The world's favorite ecommerce solution that gives you completes control to sell anything. WooCommerce is built to integrate seamlessly with WordPress, which is the world's

More information

WooCommerce izettle Documentation

WooCommerce izettle Documentation WooCommerce izettle Documentation Installation 2 System requirements 2 Downloading and installing the plugin 2 Getting a license key 3 Connecting to izettle 3 Getting started 4 The plugin settings page

More information

Stripe Payment with Recurring Profile MAGEDELIGHT.COM USER MANUAL E:

Stripe Payment with Recurring Profile MAGEDELIGHT.COM USER MANUAL E: Stripe Payment with Recurring Profile USER MANUAL MAGEDELIGHT.COM E: SUPPORT@MAGEDELIGHT.COM License Key After successful installation of Stripe Payment with recurring extension by using the Magento setup,

More information

Case Study. CMS for Management of Monetization Training Resources

Case Study. CMS for Management of Monetization Training Resources Case Study CMS for Management of Monetization Training Resources Client Requirement The client is a digital marketing company providing efficient strategies for marketing and data monetization to their

More information

WordPress WooCommerce plugin. Merchant Integration Manual

WordPress WooCommerce plugin. Merchant Integration Manual WordPress WooCommerce plugin Merchant Integration Manual 2015 07 10 Features Adds EveryPay card payment gateway service to the WooCommerce installation for supporting Visa and MasterCard payments. Requirements

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

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

IPN User Guide PAYTABS INSTANT PAYMENT NOTIFICATION USER GUIDE VERSION 1.2. PAYTABS

IPN User Guide PAYTABS INSTANT PAYMENT NOTIFICATION USER GUIDE VERSION 1.2. PAYTABS IPN User Guide PAYTABS INSTANT PAYMENT NOTIFICATION USER GUIDE VERSION 1.2 PAYTABS www.paytabs.com CONTENTS 1. Overview... 1 1.1. Test Merchant Account v/s Live Merchant Account... 1 1.2. Target Audience...

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

1 Woocommerce Products Designer

1 Woocommerce Products Designer 1 Woocommerce Products Designer Contents Overview...2 A. Installation...3 1. Requirements...3 2. Installation process...3 B. Configuration...4 1. Basic configuration...4 2. General settings...4 3. Uploads...5

More information

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

MyanPay API Integration with WordPress & WooCommerce CMS

MyanPay API Integration with WordPress & WooCommerce CMS 2016 MyanPay API Integration with WordPress & WooCommerce CMS MyanPay Myanmar Soft-Gate Technology Co, Ltd. 7/6/2016 MyanPay API Integration with WordPress & WooComerce 1 MyanPay API Integration with WordPress

More information

DIVI PERSON MODULE TEMPLATE 15

DIVI PERSON MODULE TEMPLATE 15 DIVI PERSON MODULE TEMPLATE 15 TESTED IN WORDPRESS 4.9.8 DIVI 3.10.+ REQUIREMENTS DIVI Library Is A Powerful Tool For Web Designers, As It Allows You To Build And Categorize Custom Designs That You Can

More information

USER MANUAL. Portal Invoice Add-on TABLE OF CONTENTS. Version: 1.0

USER MANUAL. Portal Invoice Add-on TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Portal Invoice Add-on... 1 Prerequisites... 1 Installation... 2 WordPress Manual Plug-in installation... 2 Plug-in Configuration... 7 SuiteCRM

More information

How to configure Web Hosting plugin

How to configure Web Hosting plugin How to configure Web Hosting plugin Install WooCommerce plugin In left-hand admin menu go-to WooCommerce Accounts tab Settings and click on In Account Creation Section if not checked check Automatically

More information

Crowdfunding WORDPRESS PLUGIN V1.0 INWAVETHEMES

Crowdfunding WORDPRESS PLUGIN V1.0 INWAVETHEMES 2016 Crowdfunding WORDPRESS PLUGIN V1.0 INWAVETHEMES Table of Contents Introduction... 2 Features... 2 1. Charity program management... 2 2. Flexibility... 2 Installation and update... 2 1. System requirement...

More information

Masterstudy - Education Center WordPress Theme

Masterstudy - Education Center WordPress Theme A short guide and general information to help you get to know your new theme. Above all, I would like to thank you for purchasing this theme, your contribution is very much appreciated. This document covers

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

API Integration Guide

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

More information

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

Acronis Backup module for WHMCS

Acronis Backup module for WHMCS Acronis Backup module for WHMCS DEPLOYMENT GUIDE Table of contents 1 Overview...3 2 Installation...3 3 Configuration...3 3.1 Adding a new server... 3 3.2 Adding a new server group... 4 3.3 Configuring

More information

BrainCert HTML5 Virtual Classroom

BrainCert HTML5 Virtual Classroom BrainCert HTML5 Virtual Classroom WordPress plugin documentation Version 1.5 1 TABLE OF CONTENTS 1.0 Installation... 4 2.0 Virtual Classroom Configuration... 5 BrainCert API Key... 6 BrainCert Base URL...

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

How to Add Product In Your Store

How to Add Product In Your Store How to Add Product In Your Store Adding a simple product Adding a Simple product is similar to writing a post in WordPress. 1. Go to WooCommerce > Products > Add Product. You then have a familiar interface

More information

Subscriptions and Recurring Payments 2.X

Subscriptions and Recurring Payments 2.X Documentation / Documentation Home Subscriptions and Recurring 2.X Created by Unknown User (bondarev), last modified by Unknown User (malynow) on Mar 22, 2017 Installation Set up cron (for eway) Configuration

More information

Custom Fields With Virtuemart 2. Simple Custom Fields. Creating a Custom Field Type

Custom Fields With Virtuemart 2. Simple Custom Fields. Creating a Custom Field Type Customization in Virtuemart 2 Custom Fields With Virtuemart 2 Custom Plugin Fields in Virtuemart 2 Part 1. Installing and Using Custom Plugin Fields Custom Plugin Fields in Virtuemart 2 Part 2. Programming

More information

Octolooks Scrapes Guide

Octolooks Scrapes Guide Octolooks Scrapes Guide https://octolooks.com/wordpress-auto-post-and-crawler-plugin-scrapes/ Version 1.4.4 1 of 21 Table of Contents Table of Contents 2 Introduction 4 How It Works 4 Requirements 4 Installation

More information

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central Table of Contents Installation Guide... 3 eshop Account Registration in Dynamics 365 Business Central:... 3 eshop Setup

More information

Product Sales Report Pro v2.1 User's Manual

Product Sales Report Pro v2.1 User's Manual Product Sales Report Pro v2.1 User's Manual Thank you for purchasing the Product Sales Report plugin. This manual will guide you through installing and using the plugin. Installation 1. Login to your WordPress

More information

Tokenization Integration Guide

Tokenization Integration Guide Tokenization Integration Guide RECURRING PAYMENTS AND TOKENIZATION PROFILE USING API INTEGRATION GUIDE VERSION 1.0 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5

More information

Smith Autoship v

Smith Autoship v Smith Autoship v.3.00.26 User s Manual Revision Date: 11/20/2013 1 Table of Contents I. Introduction... 3 II. Installing Smith Autoship... 4 III. Configuring Smith Autoship... 7 A. DNN Permissions... 7

More information

WooCommerce REST API Integration. October 27, 2018

WooCommerce REST API Integration. October 27, 2018 WooCommerce REST API Integration October 27, 2018 Andrew Duncan CEO/Owner/Developer Databuzz The ecommerce platform for WordPress The world s most customisable ecommerce platform The most popular ecommerce

More information

System Admin Manual <SNAPVALET> <Team No- 03>

System Admin Manual <SNAPVALET> <Team No- 03> System Admin Manual Name Brian Vanover Brian Bousman Ditong Ding Molly Karcher Patrick Horng Ridhima Manjrekar Role Project Manager, Developer Operational Concept Engineer, Developer

More information

Introduction. Installation. Version 2 Installation & User Guide. In the following steps you will:

Introduction. Installation. Version 2 Installation & User Guide. In the following steps you will: Introduction Hello and welcome to RedCart TM online proofing and order management! We appreciate your decision to implement RedCart for your online proofing and order management business needs. This guide

More information

2CHECKOUT PLUG-IN USER GUIDE

2CHECKOUT PLUG-IN USER GUIDE support@simicart.com Phone: 084.4.8585.4587 2CHECKOUT PLUG-IN USER GUIDE Table of Contents 1. INTRODUCTION... 3 2. HOW TO INSTALL... 4 3. HOW TO CONFIGURE ON 2CHECKOUT.COM... 5 4. HOW TO CONFIGURE IN 2CHECKOUT

More information

Documentation of Jstore Theme Premium. Installation and Activation of Jstore Theme - Premium

Documentation of Jstore Theme Premium. Installation and Activation of Jstore Theme - Premium Documentation of Jstore Theme Premium Installation and Activation of Jstore Theme - Premium Installation 1. Install Word Press from http://codex.wordpress.org/installing_wordpress. 2. Upload via Word press

More information

Membership Mastery. Easily Create Your Own Membership Site Using WishList and Wordpress EXCLUSIVE CONTENT. by: Aidan Booth & Steve Clayton

Membership Mastery. Easily Create Your Own Membership Site Using WishList and Wordpress EXCLUSIVE CONTENT. by: Aidan Booth & Steve Clayton Membership Mastery Easily Create Your Own Membership Site Using WishList and Wordpress EXCLUSIVE CONTENT by: Aidan Booth & Steve Clayton WHY MEMBERSHIP SITES? 3 OPTIMIZEPRESS WORDPRESS THEME 3 INSTALLING

More information

Customer Wise Filter Payment Method for Magento 2

Customer Wise Filter Payment Method for Magento 2 Customer wise Filter payment Magento 2 Customer Wise Filter Payment Method for Magento 2 Magento 2.x Extension User Guide Official extension page: Customer wise payment for Magento 2 Introduction: Customer

More information

Ebay Product Lister, an extension by CedCommerce allows sellers to feed their product data from their Woocommerce Store to Ebay.

Ebay Product Lister, an extension by CedCommerce allows sellers to feed their product data from their Woocommerce Store to Ebay. 1 CedCommerce. All rights reserved. SUPPORT@CEDCOMMERCE.COM [Ebay Product Lister] Ebay Product Lister, an extension by CedCommerce allows sellers to feed their product data from their Woocommerce Store

More information

Badge Parts, Inc. Master Web Site Manual

Badge Parts, Inc. Master Web Site Manual Badge Parts, Inc. Master Web Site Manual Prepared By MojoWeb Productions, LLC. December 8, 2017 1 Table of Contents Web Hosting Account Overview 3 FTP Information 3 Control Panel Login 3 Billing 3 WordPress

More information

EMPLOYEE STORE ORDERING INSTRUCTIONS

EMPLOYEE STORE ORDERING INSTRUCTIONS STEP 1: Create an Account/Log-In STEP 2: Place an Order STEP 3: Enter delivery/shipping information STEP4: Payment EMPLOYEE STORE ORDERING INSTRUCTIONS STEP 1: CREATE AN ACCOUNT/LOG-IN Once you have clicked

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

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

Drupal 7 No Schema Type For Mysql Type Date

Drupal 7 No Schema Type For Mysql Type Date Drupal 7 No Schema Type For Mysql Type Date Now when I go to Structure _ Data Table _ Adopt Tables and selects the created view, it is giving error of "no Schema type for mysql type datetime". I googled.

More information

RFQ Plugin Documentation

RFQ Plugin Documentation RFQ Plugin Documentation Installation: Make sure that Woocommerce has been installed and activated before installing the RFQ for Wordpress plugin. Download the RFQ for Wordpress plugin zip file from your

More information

Reviewer Plugin. Ultimate Reviews & User Ratings. Version Author: Michele Ivani Reviewer Plugin v. 3.6.

Reviewer Plugin. Ultimate Reviews & User Ratings. Version Author: Michele Ivani Reviewer Plugin v. 3.6. Reviewer Plugin Ultimate Reviews & User Ratings Version 3.6.0 Author: Michele Ivani Twitter: @Michele_Ivani Reviewer Plugin v. 3.6.0 1 di 15 Index # Getting started 3 Install the plugin 3 Installation

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

What are Non-Catalog Orders?

What are Non-Catalog Orders? What are Non-Catalog Orders? Non-Catalog Orders are intended to address purchasing needs that fall outside of typical requests within a punch-out site, catalog or form. Prior to beginning a Purchase Request,

More information

Quick Start Manual. Not2Order for Magento 2. Start here

Quick Start Manual. Not2Order for Magento 2. Start here Quick Start Manual Not2Order for Magento 2 Start here 1 Introduction Reading Introduction Congratulations on your purchase of Not2Order for Magento 2. You are almost in business! This guide provides the

More information

ONE STEP CHECKOUT. USER GUIDE for Magento 2.0. Version

ONE STEP CHECKOUT. USER GUIDE for Magento 2.0. Version support@magestore.com sales@magestore.com +1-415-954-7137 ONE STEP CHECKOUT USER GUIDE for Magento 2.0 Version 1.0 One step checkout v1.0 User Guide for Magento 2.0 1 Table of Contents 1. INTRODUCTION

More information

Project Design T-Shirt Sale Website University of British Columbia Okanagan. COSC Fall 2017

Project Design T-Shirt Sale Website University of British Columbia Okanagan. COSC Fall 2017 Project Design T-Shirt Sale Website University of British Columbia Okanagan COSC 304 - Fall 2017 Version 2.0 Date: 10/28/2017 Table of Contents Table of Contents 1 Project Team/Contacts: 1 Introduction:

More information

E21Commerce Product Roadmap

E21Commerce Product Roadmap E21Commerce Product Roadmap Table of Contents E21Commerce Product Overview... 2 Website Customization... 3 Phase 1 Roadmap (Delivery Q4, 2014)... 4 Hosting Requirements... 4 Product Integration... 4 Customer

More information

SugarCRM Magento Integration

SugarCRM Magento Integration SugarCRM Magento Integration www.biztechconsultancy.com Page 1 sales@biztechconsultancy.com Table of Contents 1. Benefits of Integration... 3 2. Biztech Solution... 3 3. Biztech Integration Gateway...

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

ALLIED WALLET QUICKPAY

ALLIED WALLET QUICKPAY ALLIED WALLET QUICKPAY TABLE OF CONTENTS Revision History... 1 Overview... 2 What is quickpay... 2 Required information... 2 Subscription... 2 Process for quickpay page... 2 Hosted Payment url End- Point...

More information

Documentation of Check Pincode / Zipcode for Shipping and COD-Pro. Installation of Check Pincode / Zipcode for Shipping and COD-Pro

Documentation of Check Pincode / Zipcode for Shipping and COD-Pro. Installation of Check Pincode / Zipcode for Shipping and COD-Pro Documentation of Check Pincode / Zipcode for Shipping and COD-Pro Installation of Check Pincode / Zipcode for Shipping and COD-Pro Installation 1) Install Word Press from http://codex.wordpress.org/installing_wordpress.

More information

USER MANUAL. Language Translator TABLE OF CONTENTS. Version: 1.0.4

USER MANUAL. Language Translator TABLE OF CONTENTS. Version: 1.0.4 USER MANUAL TABLE OF CONTENTS Introduction... 2 Benefits of Language Translator... 2 Pre requisite... 2 Installation... 3 Installation Steps... 3 Extension Activation... 8 Configuration... 9 FAQ... 24

More information

Motors Car Dealership and Classifieds Wordpress Plugin

Motors Car Dealership and Classifieds Wordpress Plugin 1. Getting Started 1.1. Install Motors 1.2. Import the demo 1.3. Shortcodes 1.4. Automanager XML Import 2. Features 2.1. Setting and Options 2.2. Listing Category settings 2.3. Single Listing options Motors:

More information

Automatic Customer Group Switching Magento Extension

Automatic Customer Group Switching Magento Extension Automatic Customer Group Switching Magento Extension User Manual This is the user manual of Automatic Customer Group Switching v1.9.3 and was last updated on 26-07-2017. To see what this extension can

More information

Vantiv ecommerce for Magento 1 User Guide. Version 1.0.7

Vantiv ecommerce for Magento 1 User Guide. Version 1.0.7 Vantiv ecommerce for Magento 1 User Guide Version 1.0.7 Vantiv ecommerce for Magento 1... 1 User Guide... 1 1. Project... 3 2. Onboarding... 3 3. Installation... 3 4. Configuration... 5 5. Nuances for

More information

ONE STEP CHECKOUT USER GUIDE

ONE STEP CHECKOUT USER GUIDE ONE STEP CHECKOUT USER GUIDE Version 1.0 www.advancedcheckout.com support@advancedcheckout.com Contents 1. ONE STEP CHECKOUT CONFIGURATION... 3 2. GENERAL CONFIGURATION... 3 3. DEFAULT SETTINGS... 5 4.

More information

Placo Australia Maintanence Report

Placo Australia Maintanence Report Placo Australia Maintanence Report placoaustralia.com.au 03/01/2018-04/30/2018 Overview (1 / 2) Updates 26 plugin and theme updates performed Post Site Page Backups Website PageSpeed Revisions 17 Post

More information

Chapter 3 Introduction to relational databases and MySQL

Chapter 3 Introduction to relational databases and MySQL Chapter 3 Introduction to relational databases and MySQL Murach's PHP and MySQL, C3 2014, Mike Murach & Associates, Inc. Slide 1 Objectives Applied 1. Use phpmyadmin to review the data and structure of

More information

Contents 1. How can I import my users from another platform? How can I Create Membership Levels and Subscription Packs?

Contents 1. How can I import my users from another platform? How can I Create Membership Levels and Subscription Packs? Contents 1. How can I import my users from another platform?... 2 2. How can I Create Membership Levels and Subscription Packs?... 5 3. Where is My Registration Page and How does the Registration Process

More information

Buyback inquiries listing page: Buyback requst page:

Buyback inquiries listing page: Buyback requst page: Table of Content How To Install Extension? 2 How To Uninstall Extension? 5 Configuration and Usage. 6 2 How To Install Extension? You can download the extension archive from 'My Account' section at ikantam

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

Invoice QuickStart Guide

Invoice QuickStart Guide Invoice QuickStart Guide Table of Contents Working with Payment Requests Manually Creating a Payment Request from an Existing Vendor Creating a Recurring Payment Request Adding Distributions to a Payment

More information

SitelokTM. Stripe Plugin V1.5

SitelokTM. Stripe Plugin V1.5 SitelokTM Stripe Plugin V1.5 Sitelok Stripe Plugin Manual Copyright 2015-2018 Vibralogix. All rights reserved. This document is provided by Vibralogix for informational purposes only to licensed users

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

QuickBooks Payments For WooCommerce : Introduction: Installation: Requirements:

QuickBooks Payments For WooCommerce : Introduction: Installation: Requirements: QuickBooks Payments For WooCommerce : Introduction: QuickBooks Payments For WooCommerce provides an easier, cost effective and simple alternative for a small business for accepting credit cards. Customers

More information

Documentation of Color and Image Swatches for woocommerce. Installation of Color and Image Swatches for woocommerce

Documentation of Color and Image Swatches for woocommerce. Installation of Color and Image Swatches for woocommerce Documentation of Color and Image Swatches for woocommerce Installation of Color and Image Swatches for woocommerce Activation Once you have uploaded the plugin, activate your plugin in Plugins Installed

More information

SV WooCommerce Order Export Documentation This documentation will help you to unleash the full functionality of SV WooCommerce Order Export Plugin.

SV WooCommerce Order Export Documentation This documentation will help you to unleash the full functionality of SV WooCommerce Order Export Plugin. straightvisions SV WooCommerce Order Export Documentation This documentation will help you to unleash the full functionality of SV WooCommerce Order Export Plugin. Download this document as PDF Compatibility

More information

WordPress for Business Class 8 (ecommerce & Membership)

WordPress for Business Class 8 (ecommerce & Membership) WordPress for Business Class 8 (ecommerce & Membership) Slides: http://wpacademy.tv/w5-8.pdf Class 8 - Agenda Coaching groups extension (reminder) WP Encyclopedia project (May 2013) Newsletter, auto-responder

More information

Motors Theme Documentation

Motors Theme Documentation Motors Theme Documentation Also available Online manual and Video tutorials. 2001 2017 Stylemix LLC Powered by StylemixThemes www.stylemixthemes.com Table of Contents Getting Started... 1 Introduction...

More information

Introduction to SQL on GRAHAM ED ARMSTRONG SHARCNET AUGUST 2018

Introduction to SQL on GRAHAM ED ARMSTRONG SHARCNET AUGUST 2018 Introduction to SQL on GRAHAM ED ARMSTRONG SHARCNET AUGUST 2018 Background Information 2 Background Information What is a (Relational) Database 3 Dynamic collection of information. Organized into tables,

More information

Installation Guide for Magento Subscription Manager

Installation Guide for Magento Subscription Manager Installation Guide for Magento Subscription Manager This guide shows the installation and use of the Magento Subscription Manager. The extension can be obtained from www.sellxed.com/shop. Release Date:

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

11_Mitchell_indexFinal.qxd 8/25/06 10:18 AM Page 195 Index

11_Mitchell_indexFinal.qxd 8/25/06 10:18 AM Page 195 Index Index 196 CREATE YOUR OWN WEBSITE A Account Overview screen (PayPal), 71 Account tab (SnapFish photo sharing service), 138 Add a Border option (SnapFish photo sharing service), 145 Add to Cart button,

More information

Incarcerated Student Online Ordering Procedures INTRODUCTION

Incarcerated Student Online Ordering Procedures INTRODUCTION INTRODUCTION This ordering guide gives step by step instructions on placing online orders for purchasing required and recommended materials for Incarcerated students enrolled in the Distance Learning Program.

More information

easypurchase Magellan User Reference Guide

easypurchase Magellan User Reference Guide 1 easypurchase Magellan User Reference Guide v1.12.13 Table of Contents Getting Started... 3 Initiating your Account... 3 Logging In... 3 Shop... 4 Creating an Order... 4 Hosted Catalogs... 4 Punchout

More information

SuiteCRM Magento Integration

SuiteCRM Magento Integration SuiteCRM Magento Integration www.biztechconsultancy.com Page 1 sales@biztechconsultancy.com Table of Contents 1. Benefits of Integration... 3 2. Biztech Solution... 3 3. Biztech Integration Gateway...

More information

Adaptive Payments API

Adaptive Payments API Adaptive Payments API INTEGRATION GUIDE VERSION 1.1 Table of Contents 1. Overview...5 1.1 Test Merchant Account v/s Live Merchant Account...5 1.2 Target Audience...5 1.3 Assistance...6 1.4 Pay Page Process

More information

QSCU Merchandise Store

QSCU Merchandise Store QSCU Merchandise Store Document Status: Final Report November 30th 2018 COSC 304 Team Members: Removed Table Of Contents 1. Introduction 2 1.1 Mission Statement 2 1.2 Purpose of Document 2 1.3 Executive

More information

ipay88 PLUG-IN USER GUIDE

ipay88 PLUG-IN USER GUIDE support@simicart.com Phone: 084.4.3217.1357 ipay88 PLUG-IN USER GUIDE Table of Contents 1. INTRODUCTION... 3 2. HOW TO INSTALL... 4 3. HOW TO CONFIGURE... 5 4. HOW TO USE ipay88... 8 2 1. INTRODUCTION

More information

Durango Merchant Services Direct Post API

Durango Merchant Services Direct Post API Durango Merchant Services Direct Post API Durango-Direct.com 866-415-2636 Integration Resources Documentation April 2010 Table of Contents Methodology... 2 Direct Post Method (Server to Server) FIG. 1...

More information

Aitoc. All-In-One Checkout User Manual for Magento

Aitoc. All-In-One Checkout User Manual for Magento All-In-One Checkout User Manual for Magento Table of Content 1. All-In-One Checkout components. 2. Enabling All-In-One Checkout in Magento. 3. One-Page Checkout Booster settings. 4. Configurable Checkout

More information

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.2

USER MANUAL. DynamicsPort - Customer Portal for Dynamics CRM TABLE OF CONTENTS. Version: 1.2 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 Plug-in Configuration... 5 Dynamics CRM Configuration

More information

Better Translation Technology. XTM Connect for WordPress

Better Translation Technology. XTM Connect for WordPress Better Translation Technology XTM Connect for WordPress Documentation for XTM Connect for WordPress. Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of

More information

Installation Instructions Nochex Payment Module for Jigoshop ecommerce

Installation Instructions Nochex Payment Module for Jigoshop ecommerce Installation Instructions Nochex Payment Module for Jigoshop ecommerce A guide to the installation of the Nochex payment module for Jigoshop ecommerce. All the information you need to start accepting Nochex

More information

Magento Enterprise Edition. User Guide. Part IV: Customers Sales & Orders Payments Shipping Taxes. Version

Magento Enterprise Edition. User Guide. Part IV: Customers Sales & Orders Payments Shipping Taxes. Version Magento Enterprise Edition User Guide Part IV: Customers Sales & Orders Payments Shipping Taxes Version 1.14.2 Contents Customers 1 Chapter 1: Customer Accounts 3 Customer Account Configuration 4 Customer

More information

Sendroid Ultimate. User Manual

Sendroid Ultimate. User Manual Sendroid Ultimate User Manual System Overview Sendroid Ultimate is an ultimate bulk SMS portal software and SMS reseller system designed for bulk SMS service providers, SMS resellers and bulk SMS marketers.

More information

MailChannels Reseller WHMCS Module. Operation and Configuration Guide

MailChannels Reseller WHMCS Module. Operation and Configuration Guide Table of Contents Table of Contents Overview Quick Start Module Installation Module Activation Product Setup Create a Product Group Create a Product Module Settings Pricing Configuration Usage Based Billing

More information

Introduction. Please Note! Webguidesetup.com

Introduction. Please Note! Webguidesetup.com Introduction Welcome to my WordPress guide. Using this guide you will learn how to find a web hoster, download WordPress, create a database and install WordPress as a content management system. You'll

More information

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link.

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link. How to Order a Four Panel Brochure through Print Services Go to the Print Services Web Page and select the Online Store link. 1 Enter your Username and Password on the Print Services Online Ordering home

More information