PaybyFinance Magento Plugin

Size: px
Start display at page:

Download "PaybyFinance Magento Plugin"

Transcription

1 PaybyFinance Magento Plugin Installation Instructions and User Guide Hitachi Capital Contact Name Contact Number Address <Firstname Surname> PaybyFinance Team - paybyfinance@hitachicapital.co.uk Healthy Website Contact Name Contact Number Address <Firstname Surname> support@healthywebsites.co.uk

2 Table of Contents Overview... 3 Magento Compatibility... 3 Latest Version... 3 Features... 3 Server Environment... 4 Prerequisite... 4 Installation Instructions... 4 Backup Your Data... 4 Install... 4 Use Magento Connect... 4 Manual installation using Pear... 4 Refresh the cache... 4 Enable PaybyFinance Logging Function... 4 How to configure services... 5 Configure services... 5 Add a new service... 5 Click the Button 'Add Service' on the Top Right Corner... 6 Configure the service for your site Field's that make up a service... 7 Saving the Service Product Pages... 8 Basket Page... 9 Checkout... 9 Enterprise Idev OneStepCheckout Customising Look And Feel Billing country message Grand Total Finance Options PBF Post Data... 13

3 Testing Compliance Review Known Issues Displaying vat and calculating finance Deposits Order Success Transactional Minimum deposit warning / whitespace issue Magento 1.9.1additional check for the cookie Troubleshooting

4 Overview This extension provides integration with Hitachi Capital s PaybyFinance online finance application system. You will need to have an existing relationship with Hitachi Capital to provide finance for your customers. If you do not have an existing relationship with Hitachi Capital, please complete the form at: and select Retailer Finance from the dropdown list. If you already have a relationship with Hitachi Capital but don t yet use PaybyFinance, please contact your Hitachi relationship manager. This extension supports Sage Pay (Ebizmarts), Paypal Express and Datacash Payment Gateways as well as OnePage Checkout and is compatible with Magento Community 1.7, 1.8 and 1.9 and Magento Enterprise 1.13 and Magento Compatibility Magento Community (`1.7.*`, `1.8.*`, `1.9.*`) Magento Enterprise Edition (`1.13.*`, `1.14.*`) 3 Latest Version The Latest version of this extension is freely available from Magento Connect Features Multi-sites/store environment Discount codes One Step Checkout Version 4 Webshopapps Matrix Rates Sage Pay Suite PRO v3.0.8 by Ebizmarts: Sage Pay Suite [Frontend SERVER Integration] Sage Pay Suite Community Edition v by Ebizmarts: Sage Pay Suite [Frontend SERVER Integration] PayPal Express Checkout DataCash by ontap:: Hosted Card Capture && API

5 Note: If your Magento ecommerce site is not compatible with the above list, please contact your Hitachi account manager. Server Environment Prerequisite Please ensure that the following TLS1.2 cipher is available on your server for secure communication with the PaybyFinance Server, a finance application cannot be processed without this. TLS_RSA_WITH_RC4_128_SHA Installation Instructions Backup Your Data It is recomended that you first install this extension on a staging environment and backup your store database and web directory. Install 4 Use Magento Connect The extension is freely available from Magento Connect Manual installation using Pear You can install the plugin using pear, the extension key is on the Magento Connect page. Refresh the cache After installing the extension, you will need to clear the cache by logging in and navigating to System - >Cache Management, select refresh for the All Cache select box. You will then need to logout and logback in (it is important to do this in order to reset the permissions for the user). Enable PaybyFinance Logging Function By enabling the logging function, all requests to and from PaybyFiannce will be logged under:

6 magento root/var/log/paybyfinance This extension also logs all data communications inside the database in the event all server logs are cleared and a finance application still needs to be examined. How to configure services Please contact your Hitachi relationship manager to agree the services you can use on your site. Configure services A service describes how the customer will pay back the finance. It is used to calculate monthly instalments and defines under what conditions the finance service will be available for the product or the shopping basket. An etailer can have more than one service. Add a new service To add a new service, in the admin menu, select PaybyFinance > Services > Add Service. Fill in the service details and click Save. Repeat this for all services. Login to your Magento Admin Panel. Navigate to 'Pay By Finance' 'Service' 5

7 Click the Button 'Add Service' on the Top Right Corner Configure the service for your site. 6

8 Fields that make up a service Type (ID): numeric, example: 31 Name: string, for example "IFC12" or "IBC36" APR: numeric, for example 6 Term: numeric, for example 12 Defer term: numeric, example: 6 Option term: numeric, example: 0 Deposit: percentage, for example: 10 Fee: price, example: 0 Minimum amount: price, example: 500 Multiplier: float (8 digit after the floating point), example: RPM: float, example: 0.0 Note For Service Type 31 Interest Bearing Credit - You HAVE to configure the 'Rpm' for this service type, otherwise the finance application will fail. For Service Type 32 - Internet Free Credit - You do not need to configure 'Rpm' for this type of services. 7

9 Saving the Service You can save the service by click the 'Save Service' from top right corner. 8 Product Pages If the finance widget does not appear by default on your sites product pages, the following instruction will provide a guide for how to make it visible. Open the following file, if it does not exist, create it: app/design/frontend/{yourpackage}/{yourtheme}/layout/local.xml And add this or edit the file with the following: <?xml version="1.0"?> <layout> <catalog_product_view> <reference name="content"> <block type="paybyfinance/selector" name="paybyfinance.selector" as="pbfselector" template="paybyfinance/selector.phtml"> </block> </reference> </catalog_product_view> </layout>

10 Open the following file: app/design/frontend/{yourpackage}/{yourtheme}/template/catalog/product/view.phtml If the file is not in the folder of your theme, then copy it from this location: app/design/frontend/base/default/template/catalog/product/view.phtml Add this line of code: <?php echo $this->getchildhtml('paybyfinance.selector')?> To only display the finance widget on product pages where finance is available, we provide a helper method which returns with a boolean type: <?php if Mage::helper('paybyfinance')->isProductEligible($_product):?> <?php echo $this->getchildhtml('paybyfinance.selector')?> <?php endif;?> Basket Page Open the file: app/design/frontend/{yourpackage}/{yourtheme}/templates/checkout/cart.phtml 9 And place the following code anywhere you want to display the finance selector widget: <?php echo $this->getchildhtml('cartpbfselector');?> In the rwd template, this step is not required as the extension pushes the widget to the `shopping.cart.table.after` reference. Be aware, the default `app/design/frontend/base/default/templates/checkout/cart.phtml` template is overridden in favour of automatically adding the widget to the cart. Checkout How to place the finance selector on the checkout pages if it's not appearing by default. The extension provides block by default on the right sidebar, this following will show how to add it to those templates where it's not appearing by default. Open the following file, if it does not exist, create it: app/design/frontend/{yourpackage}/{yourtheme}/layout/local.xml And add this or edit the file with the following: <?xml version="1.0"?> <layout>

11 <checkout_onepage_index> <reference name="right"> <block type="paybyfinance/selector" name="paybyfinance.selector" as="pbfselector" template="paybyfinance/selector.phtml"> </block> </reference> </checkout_onepage_index> </layout> Note the actual XML could be different as different layout handles or section names might appear in a custom template. Regarding the layout handle or reference name, consult your trusted Magento developer. Enterprise Idev OneStepCheckout Configuring the module to work with OneStepCheckout requires two small changes to the code. Add this block to the./app/design/frontend/base/default/layout/onestepcheckout.xml layout xml here: <layout version="0.1.0"> <onestepcheckout_index_index> <reference name="content"> <block type="onestepcheckout/checkout" name="onestepcheckout.checkout" template="onestepcheckout/checkout.phtml">... <block type="paybyfinance/selector" name="paybyfinance.selector" as="pbfselector" template="paybyfinance/selector.phtml" /> </block> </reference> </onestepcheckout_index_index> </layout> Add this line of code where you would like the paybyfinance block to be displayed: <?php echo $this->getchildhtml('pbfselector');?> For example, to have it below the payment method option you could add it between these two lines (approx line 185 at time of writing this instruction): <?php echo $this->getchildhtml('choose-payment-method');?> <?php echo $this->getchildhtml('pbfselector');?> 10

12 Customising Look And Feel Billing country message The billing country message by default is placed on the top of the Billing Information step on the checkout screen: If you are paying by finance then goods MUST be delivered to your billing address. Products cannot be delivered outside of the UK. To modify the position of this text, simply create a containing div tag anywhere in your template file, it's location by default is: frontend/{package}/{theme}/template/persistent/checkout/onepage/billing.phtml If the file does not exist, copy it from the base/default template and modify it in your shop's template. Add the following code anywhere: Copy skin/frontend/base/default/js/paybyfinance/checkout.js to your template's skin folder to the below path: skin/frontend/{package}/{theme}/js/paybyfinance/checkout.js And run a search and replace from: `$('co-billing-form')` to: `$('paybyfinance-billing-countrymessage')` Using vim this can be achieved with the following command: vim :%s/\$('co-billing-form')/\$('paybyfinance-billing-country-message')/g 11 Grand Total Be sure to modify the templates to add an asterisk to the "Grand Totals" like this to both the basket and the order reviews: SUBTOTAL 1, SHIPPING & HANDLING (FLAT RATE - FIXED) 5.00 FINANCED AMOUNT * GRAND TOTAL * Grand total is the amount to be paid by credit/debit card This can be done in the templates and we have provided sample files doing this: app/design/frontend/base/default/template/checkout/cart/totals.phtml

13 app/design/frontend/base/default/template/checkout/onepage/review/info.phtml app/design/frontend/base/default/template/checkout/onepage/review/totals.phtml app/design/frontend/rwd/default/template/checkout/onepage/review/info.phtml 12 Finance Options To Edit the CMS page that the extension created, it's called `finance-options`, go to CMS, Pages, Manage Content and find finance-options here. Change the text as required for the services that you have set up. Place a link to this page in your footer. This is required for compliance reason.

14 PBF Post Data How to add a non-mandatory field to the PBF post request. To preserve any changes you make to the extension so that they are not lost when the extension is upgraded you will need to create an extension override and re write this class: HC_PayByFinance_Model_Post::setQuoteData() in your own extension. You will then be able to add any field to the $fields array. Testing It is recommended that you test all the services that have been set up using the different payment gateways and shipping methods that your site uses before presenting your staging site for a compliance review. During integration testing, an e-tailer will wish to guarantee the loan decision. By entering the following data as the applicant s surname, the corresponding decision will always be returned. 13 Surname Decision Decision Code TESTDO Decline Override TR05 TESTPD Policy Decline TD03 TESTSC Score Decline TD02 TESTDD Decline TD01 TESTFR Fraud Refer TR04 TESTRR Refer TR03 TESTCA Conditionally Accept TR02 TESTPA Provisionally Accept TR01 TESTAA Accept TA01

15 Compliance Review Wording: Credit is provided by Hitachi Capital Consumer Finance, a division of Hitachi Capital (UK) PLC authorised and regulated by the Financial Conduct Authority. All sites must go through a compliance review prior to being given live IDs for use in production environments. Once your plugin has been successfully set up and tested please contact your Hitachi relationship manager to request a compliance review. A compliance review takes 10 working days to complete and may raise recommendations regarding the appearance of how finance is presented to the end customer. Every attempt has been made in producing this plugin to minimise any revisions that may be required to sign off your site for processing finance applications. Known Issues Displaying vat and calculating finance 14 If your shop is configured to display prices ex vat then finance is calculating on the ex vat subtotals. To resolve this issue: Add a line to the fetch function in: Change this: app\code\local\hc\paybyfinance\model\sales\quote\totalcost.php $amount = $address->getquote()->getsubtotal() + $address->getshippingamount() + $address->getdiscountamount() - $address->getgiftcardsamount(); To this: $amount = $address->getquote()->getsubtotal() + $address->gettaxamount() + $address->getshippingamount() + $address->getdiscountamount() - $address->getgiftcardsamount();

16 Deposits Deposits can be for either a fixed amount, e.g. 25% or a range from 0-60%. The facility to enter a min/max deposit and specify what interval there should be would give etailers more flexibility over the user experience. Order Success Transactional When an order is placed Magento triggers the transactional and then redirects the user to PaybyFinance at which point the application can fail or be abandoned. If the application fails or is deferred, PBF will send a further . The user experience would be enhanced if the order success transactional made a comment that the order is placed and a separate will be sent regarding the status of the finance application. Minimum deposit warning / whitespace issue 15

17 Depending on what template you are using there may be an issue with the minimum deposit / minimum loan amount error message not having white space between it and the service toggle switch box. This issue needs to be resolved on the individual etailer template files. Magento 1.9.1additional check for the cookie In Magento (and EE ) there's an additional check for the cookie which is deleting the cookie when the cookie domain is the same and transferred with Access-Control-Request-Headers. Please comment out the following lines in Magento 1.9.1: app/code/core/mage/core/model/session/abstract/varien.php line If you wish to implement a fix for this issue yourself you can see an example of how Ebizmarts fixed this in their SagePay extension: 16 Troubleshooting If in Magento, the logging is enabled in System -> Configuration -> Developer -> Log Settings, then the extension will log each request to the configured var/log/ folder's paybyfinance subfolder. The paybyfinance-log.log contains general logging, such as errors generated by a software bug. paybyfinance-post.log file contains the POST requests made to the Hitachi Capital servers, while the paybyfinance-notification.log will contain each notification requests made by the Hitachi Capital servers to the e-tailer website. If you need help troubleshooting finance applications please forward these log files to your Hitachi relationship manager. N.B. In the event that system logs are not available then the extension logs the same data to the database in the paybyfinance_log table.

Hitachi PaybyFinance Magento Plugin

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

More information

Shop by Manufacturer Custom Module for Magento

Shop by Manufacturer Custom Module for Magento Shop by Manufacturer 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

More information

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

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

MAGEJAM PLUGIN INSTALLATION GUIDE

MAGEJAM PLUGIN INSTALLATION GUIDE MAGEJAM PLUGIN INSTALLATION GUIDE BEFORE YOU BEGIN ANY INSTALL OR UPGRADE ** Always make sure to make a backup of your Magento installation before installing any extension especially on a live system.**

More information

MAGENTO TRAINING PROGRAM

MAGENTO TRAINING PROGRAM Design Integration Guideline MAGENTO TRAINING PROGRAM Contents 1 Standard development workflow 32 Prepare working environment 3 Layout comprehension 34 Introduce Block 5 Understand header and footer elements

More information

Magento Quotation Module User and Installer Documentation Version 2.2

Magento Quotation Module User and Installer Documentation Version 2.2 Magento Quotation Module User and Installer Documentation Version 2.2 1. Overview... 2 2. Installation... 2 2.1 Installation générale... 2 2.1 Installation... 2 2.2 Magento Updates... 3 2.3 Other modules

More information

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved

ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2013 Infortis All rights reserved 1 1. Update Before you start updating, please refer to 2. Important changes to check if there are any additional instructions

More information

Magento Extension for Add Multiple Products by Capacity Web Solutions

Magento Extension for Add Multiple Products by Capacity Web Solutions Magento Extension for Add Multiple Products by Capacity Web Solutions (Website: - http://www.capacitywebsolutions.com ) CONTENT Introduction.2 Installation 3 Configuration Settings..5 Features.9 Add Multiple

More information

Official Amazon Checkout Extension for Magento Commerce. Documentation

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

More information

Top Navigation menu - Tabs. User Guide 1. www.magazento.com & www.ecommerceoffice.com

Top Navigation menu - Tabs. User Guide 1. www.magazento.com & www.ecommerceoffice.com User Guide User Guide 1 Extension Description Successful Websites ALWAYS have logical navigation that mirror real world navigational expectations and experiences. Good menus ALWAYS looks 100% clear, because

More information

GPMD CheckoutSuite for Magento Documentation

GPMD CheckoutSuite for Magento Documentation GPMD CheckoutSuite for Magento Documentation Version: 1.0.0 Table of Contents Installation Configuration Setting up Goals in Google Analytics Installation IMPORTANT: Before installing any Magento Extension

More information

Product Name: Recurring & Subscription Payments Version: 2.0.0 Document Type: Help doc Author: Milople Inc.

Product Name: Recurring & Subscription Payments Version: 2.0.0 Document Type: Help doc Author: Milople Inc. Product Name: Recurring & Subscription Payments Version: 2.0.0 Document Type: Help doc Author: Milople Inc. https://www.milople.com/magento-extensions/recurring-and-subscription-payments.html Table of

More information

Klarna Magento module

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

More information

Product Name: ANZ egate Connect Version: 2.1.9 Document Type: Help doc Author: Milople Inc.

Product Name: ANZ egate Connect Version: 2.1.9 Document Type: Help doc Author: Milople Inc. Product Name: ANZ egate Connect Version: 2.1.9 Document Type: Help doc Author: Milople Inc. https://www.milople.com/magento-extensions/anz-egate-connect.html Table of Content 1. Installation and Un-installation

More information

Plugin Integration Guide

Plugin Integration Guide Plugin Integration Guide Revision History Version Date Changed By Comments/Reason 1.0 16/09/14 NZB Created 1.01 01/10/ This document describes the implementation requirements for the mobicred Magento Plugin,

More information

magento features list

magento features list features list magento features list Magento is a feature-rich ecommerce platform solution that offers merchants complete flexibility and control over the functionality of their online channel. Magento

More information

Module Private Sales User Manual

Module Private Sales User Manual Module Private Sales User Manual 1 / 11 Summary Summary Overview... 3 Installation... 4 Upload files... 4 Settings... 4 User account... 5 General... 5 Invitations... 6 Abreviations... 6 Display slider...

More information

ProxiBlue Gift Promotions

ProxiBlue Gift Promotions ProxiBlue Gift Promotions Thank you for purchasing our product. Introduction This is an extensive and complicated extension. The install is best done by a magento professional developer or agency. It is

More information

Product Name: Size Chart Popup Version: 2.0.1 Document Type: Help doc Author: Milople Inc.

Product Name: Size Chart Popup Version: 2.0.1 Document Type: Help doc Author: Milople Inc. Product Name: Size Chart Popup Version: 2.0.1 Document Type: Help doc Author: Milople Inc. https:/www.milople.com/magento-extensions/size-chart-popup Table of content 1. Installation and Un-installation

More information

CheckItOut Developer Manual

CheckItOut Developer Manual CheckItOut Developer Manual version 1.0.0 CheckItOut Developer Manual Page 1/13 Table Of Contents Minimal System Requirements...3 Installation...4 Magento Connect Package...4 Zip Archive...7 Overview...9

More information

www.store.belvg.com skype ID: store.belvg email: store@belvg.com US phone number: +1-424-253-0801

www.store.belvg.com skype ID: store.belvg email: store@belvg.com US phone number: +1-424-253-0801 1 Table of Contents Table of Contents: 1. Introduction to Google+ All in One... 3 2. How to Install... 4 3. How to Create Google+ App... 5 4. How to Configure... 8 5. How to Use... 13 2 Introduction to

More information

DutyCalculator - Installation and Configuration

DutyCalculator - Installation and Configuration DutyCalculator - Installation and Configuration Date: 23 Oct 201, Version 0.4.10 Requirements Magento Community version 1. and higher or Enterprise version 1.9.1 and higher Installation Follow this link

More information

Site Store Pro. INSTALLATION GUIDE WPCartPro Wordpress Plugin Version

Site Store Pro. INSTALLATION GUIDE WPCartPro Wordpress Plugin Version Site Store Pro INSTALLATION GUIDE WPCartPro Wordpress Plugin Version WPCARTPRO INTRODUCTION 2 SYSTEM REQUIREMENTS 4 DOWNLOAD YOUR WPCARTPRO VERSION 5 EXTRACT THE FOLDERS FROM THE ZIP FILE TO A DIRECTORY

More information

Version 1.0.0 USER GUIDE

Version 1.0.0 USER GUIDE Magento Extension Grid Manager Version 1.0.0 USER GUIDE Last update: Aug 13 th, 2013 DragonFroot.com Grid Manager v1-0 Content 1. Introduction 2. Installation 3. Configuration 4. Troubleshooting 5. Contact

More information

MyanPay API Integration with Magento CMS

MyanPay API Integration with Magento CMS 2014 MyanPay API Integration with Magento CMS MyanPay Myanmar Soft Gate Technology Co, Ltd. 1/1/2014 MyanPay API Integration with Magento CMS 1 MyanPay API Integration with Magento CMS MyanPay API Generating

More information

Paya Card Services Payment Gateway Extension. Magento Extension User Guide

Paya Card Services Payment Gateway Extension. Magento Extension User Guide Paya Card Services Payment Gateway Extension Magento Extension User Guide Table of contents: 1. 2. 3. 4. 5. How to Install..3 General Settings......8 Use as Payment option..........10 Success View..........

More information

ekomimeetsmage Manual for version 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0

ekomimeetsmage Manual for version 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0 ekomimeetsmage Manual for version 1.0.0, 1.1.0, 1.2.0, 1.3.0, 1.4.0 Version 0.6 Last edit: 16.05.2013 Overview 1 Introduction...3 1.1 Requirements...3 1.2 Function Overview...3 2 Installation...3 2.1 Important

More information

MAGENTO - SETUP PAYMENT PLANS

MAGENTO - SETUP PAYMENT PLANS MAGENTO - SETUP PAYMENT PLANS http://www.tutorialspoint.com/magento/magento_setup_payment_plans.htm Copyright tutorialspoint.com PayPal is a secure way for customers to pay online. This article explains

More information

www.store.belvg.com skype ID: store.belvg email: store@belvg.com US phone number: +1-424-253-0801

www.store.belvg.com skype ID: store.belvg email: store@belvg.com US phone number: +1-424-253-0801 www.store.belvg.com skype ID: store.belvg email: store@belvg.com US phone number: +1-424-253-0801 1 Table of Contents User Guide Table of Contents 1. Introduction to Facebook Connect and Like Free... 3

More information

Amazon Payments Implementation Guide. Support for ZenCart

Amazon Payments Implementation Guide. Support for ZenCart Support for ZenCart This document explains the necessary steps to offer Amazon Payments on your website. You will need to create an Amazon Payments account and enter your Merchant ID and MWS access keys

More information

www.store.belvg.com skype ID: store.belvg email: store@belvg.com US phone number: +1-424-253-0801

www.store.belvg.com skype ID: store.belvg email: store@belvg.com US phone number: +1-424-253-0801 1 Table of Contents Table of Contents: 1. Introduction to One Page Review... 3 2. How to Install... 4 3. How to Configure... 5 3.1. How to manage reviews... 5 3.2 How to moderate reviews... 6 3.2. How

More information

Magento-Twinfield Module

Magento-Twinfield Module Magento-Twinfield Module V 1.2 (beta) Installation Manual V 1.2.1, November 23, 2011 Contact information Tauros Media Nederland B.V. E: twinfield@taurosmedia.com 1 1. Index 1) Index.2 2) Introduction..3

More information

Fortis Theme. User Guide. v1.0.0. Magento theme by Infortis. Copyright 2012 Infortis

Fortis Theme. User Guide. v1.0.0. Magento theme by Infortis. Copyright 2012 Infortis Fortis Theme v1.0.0 Magento theme by Infortis User Guide Copyright 2012 Infortis 1 Table of Contents 1. Introduction...3 2. Installation...4 3. Basic Configuration...5 3.1 Enable Fortis Theme...5 3.2 Enable

More information

JOINUS AG. PowerPay Checkout. Magento Module User Manual. Support: it-support@joinusag.ch

JOINUS AG. PowerPay Checkout. Magento Module User Manual. Support: it-support@joinusag.ch PowerPay Checkout Magento Module User Manual Support: it-support@joinusag.ch This document explains installation procedure and configuration options for Joinus AG PowerPay checkout magento payment module.

More information

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0)

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0) LICENTIA Nuntius Magento Email Marketing Extension REVISION: THURSDAY, JUNE 2, 2016 (V1.9.0.0) INDEX About the extension... 6 Compatability... 6 How to install... 6 After Instalattion... 6 Integrate in

More information

Magento module Documentation

Magento module Documentation Table of contents 1 General... 4 1.1 Languages... 4 2 Installation... 4 2.1 Search module... 4 2.2 Installation in Magento... 6 2.3 Installation as a local package... 7 2.4 Uninstalling the module... 8

More information

Content Management System

Content Management System Content Management System XT-CMS + XARA Guide & Tutorial The purpose of this guide and tutorial is to show how to use XT-CMS with web pages exported from Xara. Both Xara Web Designer and Xara Designer

More information

Magento Theme Instruction

Magento Theme Instruction Magento Theme Instruction We are extremely happy to present Holiday Magento theme to you, it is designed and developed by highly qualified Designer & Developers in a way that make it usable for any type

More information

Bazaarvoice for Magento Extension Implementation Guide v6.3.4

Bazaarvoice for Magento Extension Implementation Guide v6.3.4 Bazaarvoice Bazaarvoice for Magento Extension Implementation Guide v6.3.4 Version 6.3.4 Bazaarvoice Inc. 03/25/2016 Introduction Bazaarvoice maintains a pre-built integration into the Magento platform.

More information

Installation Guide MAGENTO PAYMENT PLUGIN. release 1.0.1

Installation Guide MAGENTO PAYMENT PLUGIN. release 1.0.1 release 1.0.1 MAGENTO PAYMENT PLUGIN MAXIMUM CONSULT Tel: (+258) 21 903 112 (+258) 84 74 37 30 8 (+258) 82 61 45 471 Email: info@maximumconsult.com Maputo. Mozambique 1 Paguei.Online is the first Mozambican

More information

Magento Theme Instruction

Magento Theme Instruction Magento Theme Instruction We are extremely happy to present Metros Magento theme to you, it is designed and developed by highly qualified Designer & Developers in a way that make it usable for any type

More information

install the extension:

install the extension: AITOC s Extensions for Magento Installation Guide Thank you for choosing AITOC s extension for Magento. This document will provide you with the informationn on how to install andd deactivatee this extension.

More information

Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.

Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo. Create e-commerce website Opencart Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.com Create e-commerce website Opencart What is opencart? Opencart

More information

Shop Manager Manual ConfigBox 3.0 for Magento

Shop Manager Manual ConfigBox 3.0 for Magento Shop Manager Manual ConfigBox 3.0 for Magento Table of Contents 1 INTRODUCTION... 4 2 INSTALLATION... 5 2.1 How to check if ioncube Loader is installed... 5 2.1.1 What to do if ioncube Loader is not installed...

More information

The ultimate integrated Magento helpdesk solution

The ultimate integrated Magento helpdesk solution Breincoach Wolfhezerweg 40 6874 AE Wolfheze The Netherlands Website:www.breincoach.eu email: info@breincoach.eu l phone: +31-6-925529 VAT: NL019512259B02 Bank: Paypal: paypal@breincoach.eu Bank: ING Account

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2012-02-17 Sitecore E-Commerce Services 1.2 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring Sitecore

More information

SM Wedding Userguide MagenTech [2012]

SM Wedding Userguide MagenTech [2012] 1 SM Wedding Userguide [2012] 1 2 2 3 table of content Introduction... 4 Features... 5 Chapter 1: Installation... 7 1.1 System Requirements... 7 1.2 Installing SM Wedding... 7 Chapter 2: Demo Layout...

More information

Morningtime Ogone Pro Manual (manual v1.0)... 1. Step 1 - Preparations... 1. Step 2 - unpack and copy files... 2

Morningtime Ogone Pro Manual (manual v1.0)... 1. Step 1 - Preparations... 1. Step 2 - unpack and copy files... 2 MORNINGTIME OGONE PRO MANUAL (MANUAL V1.0) 1. Sign up for an Ogone account at http://www.ogone.com. 2. This module works for Magento Community 1.3-1.5 and Enterprise 1.7-1.10 CONTENTS Morningtime Ogone

More information

Responsive Banner Slider Extension By Capacity Web Solutions

Responsive Banner Slider Extension By Capacity Web Solutions CONTENT Introduction 2 Features 2 Installation 3 Configuration Settings 4 Manage Responsive Banner Slider Extension 5 Manage Group Section 5 Manage Slides Section 9 Display Responsive Banner Slider 11

More information

Google Trusted Stores Setup in Magento

Google Trusted Stores Setup in Magento Google Trusted Stores Setup in Magento Google Trusted Stores is a free badging program that can improve your conversion rate and average order size by reassuring potential customers you offer a great shopping

More information

Login and Pay with Amazon - extension for Magento

Login and Pay with Amazon - extension for Magento Login and Pay with Amazon - extension for Magento Release 1.6.4 Marek Zabrowarny April 27, 2016 Contents 1 Overview 3 1.1 Extension features............................................ 3 1.2 Getting the

More information

Stripe Payments & Subscriptions

Stripe Payments & Subscriptions Stripe Payments & Subscriptions Installation and Configuration Guide Table of Contents Stripe Payments... 2 Installation... 2 Configuration... 3 Testing Cards... 6 Saved Cards... 7 Issuing Refunds... 9

More information

Multivendor Extension User Guide

Multivendor Extension User Guide Multivendor Extension User Guide About This Extension: The market place extension gives merchants the ability to sell products through multiple drop shippers, vendors, and suppliers. It allows vendors

More information

Realex Payments. Magento Community / Enterprise Plugin. Configuration Guide. Version: 1.1

Realex Payments. Magento Community / Enterprise Plugin. Configuration Guide. Version: 1.1 Realex Payments Magento Community / Enterprise Plugin Configuration Guide Version: 1.1 Document Information Document Name: Magento Community / Enterprise Plugin Configuration Guide Document Version: 1.1

More information

Setup Guide for Magento and BlueSnap

Setup Guide for Magento and BlueSnap Setup Guide for Magento and BlueSnap This manual is meant to show you how to connect your Magento store with your newly created BlueSnap account. It will show step-by-step instructions. For any further

More information

JTouch Mobile Extension for Joomla! User Guide

JTouch Mobile Extension for Joomla! User Guide JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed

More information

FORTIS. User Guide. Fully responsive flexible Magento theme by Infortis. Copyright 2012-2013 Infortis. All rights reserved

FORTIS. User Guide. Fully responsive flexible Magento theme by Infortis. Copyright 2012-2013 Infortis. All rights reserved FORTIS Fully responsive flexible Magento theme by Infortis User Guide Copyright 2012-2013 Infortis All rights reserved How to use this document Please read this user guide carefully, it will help you eliminate

More information

MAGENTO-TWINFIELD MODULE

MAGENTO-TWINFIELD MODULE MAGENTO-TWINFIELD MODULE MAGENTO V1.0.5 (BETA) INSTALLATION & USER MANUAL V1.0.5 JANUARY 10, 2013 TAUROS MEDIA NEDERLAND B.V. POSTBUS 75035, 1077 AA AMSTERDAM INFO@TAUROSMEDIA.COM USER MANUAL MAGENTO-TWINFIELD

More information

Magento 1.3 Feature List

Magento 1.3 Feature List ecommerce Platform for Growth Magento 1.3 Feature List Site Management Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed

More information

Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202

Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202 Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: SUPPORT@MAGEDELIGHT.COM P: +1-(248)-275-1202 License Key After successful installation of Stripe Payment extension by using the Magento

More information

Lay-Buys Payment Gateway Extension

Lay-Buys Payment Gateway Extension Lay-Buys Payment Gateway Extension Prestashop Extension User Guide Page 1 1. How to Install Table of contents: 1. How to Install....3 2. General Settings...5 3. Use as Payment option.....7 4. Lay-Buys

More information

Copyright 2013 X.commerce, Inc. All rights reserved. 01-01-13

Copyright 2013 X.commerce, Inc. All rights reserved. 01-01-13 Copyright 2013 X.commerce, Inc. All rights reserved. 01-01-13 1 Contents Overview... 3 Welcome to the Program!... 3 Two Magento Developer Certification Exam Choices... 3 About This Guide... 4 Group Discussion

More information

Authorize.net for WordPress

Authorize.net for WordPress Authorize.net for WordPress Authorize.net for WordPress 1 Install and Upgrade 1.1 1.2 Install The Plugin 5 Upgrading the plugin 8 2 General Settings 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.10 2.11 Connecting

More information

SMSNotify Extension. User Documentation. Automated SMS sender and customer relationship tool. SMSNotify User Documentation 1

SMSNotify Extension. User Documentation. Automated SMS sender and customer relationship tool. SMSNotify User Documentation 1 SMSNotify Extension User Documentation Automated SMS sender and customer relationship tool SMSNotify User Documentation 1 Contents: 1. Extension overview and features... 3 2. Installation process... 4

More information

Lay-Buys Payment Gateway Extension

Lay-Buys Payment Gateway Extension Lay-Buys Payment Gateway Extension WooCommerce Extension User Guide Page 1 1. How To Install Table of contents: 1. How to Install....3 2. General Settings...8 3. Use as Payment option.....12 4. Lay-Buys

More information

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_digital8 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List Magento is a feature-rich, professional Open Source ecommerce platform solution that offers merchants complete flexibility and control over the user experience, content, and functionality of their online

More information

WordPress 2.9 e-commerce

WordPress 2.9 e-commerce WordPress 2.9 e-commerce Build a proficient online store to sell and services products Brian Bondari Table of Contents Preface 1 Chapter 1: Getting Started with WordPress and e-commerce 7 Why WordPress

More information

Shipbeat Magento Module. Installation and user guide

Shipbeat Magento Module. Installation and user guide Shipbeat Magento Module Installation and user guide This guide explains how the Shipbeat Magento Module is installed, used and uninstalled from your Magento Community Store. If you have questions or need

More information

User s manual. Magento extension. BCP - Better Configurable Products

User s manual. Magento extension. BCP - Better Configurable Products User s manual Magento extension BCP - Better Configurable Products This document describes how to install, configure, and use the extension BCP - Better Configurable Products for the ecommerce system Magento.

More information

Table of Content. 1. Mofluid Installation. 2. Mofluid Uninstallation. a. Magento Connect b. Manual Installation

Table of Content. 1. Mofluid Installation. 2. Mofluid Uninstallation. a. Magento Connect b. Manual Installation Table of Content 1. Mofluid Installation a. Magento Connect b. Manual Installation 2. Mofluid Uninstallation Module 1 Mofluid Installation Mofluid is installed using a plugin.tgz file that can be obtained

More information

Integrated HD Setup and Installation

Integrated HD Setup and Installation Integrated HD Setup and Installation This document explains how to set up install the Integrated Help Desk. Areas where special technical knowledge are required are identified with an asterisk. Plugin

More information

Magento - Feature Set

Magento - Feature Set Magento - Feature Set Marketing Promotions and Tools Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories. For example: Percent Discount

More information

J2T Points & Rewards Magento Extension

J2T Points & Rewards Magento Extension J2T Points & Rewards Magento Extension Documentation for v. 1.6.x Summary How to install...2 How to configure...3 Description of configuration fields...3 Default configuration...3 Registration/Referral

More information

User Guide. Version 1.0.6 Date: 6 th February 2015. 2013 Vibaweb Ltd. All rights reserved.

User Guide. Version 1.0.6 Date: 6 th February 2015. 2013 Vibaweb Ltd. All rights reserved. User Guide Version 1.0.6 Date: 6 th February 2015 SalesPro: User Guide Page 1 Contents Legal Agreement Page 2 About SalesPro Page 2 How to install SalesPro Page 3 Getting started - Compatibility checks

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2011-05-19 Sitecore E-Commerce Fundamental Edition 1.1 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring

More information

This guide provides additional information about topics covered in the webinar

This guide provides additional information about topics covered in the webinar This guide provides additional information about topics covered in the webinar Scan to go there now! Copyright 2012 X.commerce, Inc. All rights reserved. Contents CHAPTER 1: Leveraging Store Content 1

More information

InstantSearch+ for Magento Extension

InstantSearch+ for Magento Extension InstantSearch+ for Magento Extension Troubleshooting Guide- version 2.1.1 1. Sync status on the InstantSearch+ Dashboard Go to http://magento.instantsearchplus.com/login Login using the username/password

More information

Certified PHP/MySQL Web Developer Course

Certified PHP/MySQL Web Developer Course Course Duration : 3 Months (120 Hours) Day 1 Introduction to PHP 1.PHP web architecture 2.PHP wamp server installation 3.First PHP program 4.HTML with php 5.Comments and PHP manual usage Day 2 Variables,

More information

Trytond Magento Documentation

Trytond Magento Documentation Trytond Magento Documentation Release 3.4.11.0 Openlabs Technologies & Consulting (P) Limited June 23, 2015 Contents 1 Introduction 3 2 Installation 5 2.1 Installation of Magento Core API extension...............................

More information

Magic Liquidizer Documentation

Magic Liquidizer Documentation Magic Liquidizer helps many web developers and website owners to instantly make their websites adaptable to mobile screens such as tablets and smartphones. Magic Liquidizer Documentation A complete solution

More information

CHARGE Anywhere Universal Shopping Cart

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

More information

X-POS GUIDE. v3.4 INSTALLATION. 2015 SmartOSC and X-POS

X-POS GUIDE. v3.4 INSTALLATION. 2015 SmartOSC and X-POS GUIDE INSTALLATION X-POS v3.4 2015 SmartOSC and X-POS 1. Prerequisites for Installing and Upgrading Server has Apache/PHP 5.2.x/MySQL installed. Magento Community version 1.7.x or above already installed

More information

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List

For a full comparison of Magento Enterprise and Magento Community, visit http://www.magentocommerce.com/product/compare. Magento Feature List Magento is a feature-rich, professional Open Source ecommerce platform solution that offers merchants complete flexibility and control over the user experience, content, and functionality of their online

More information

PDG Software. Site Design Guide

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

More information

DNNSmart Super Store User Manual

DNNSmart Super Store User Manual DNNSmart Super Store User Manual Description This is one simple but useful e-commerce module. It consists of multiple submodules which can help you setup your DNN E-commerce sites quickly. It's very easy

More information

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: SEPTEMBER 21, 2015 (V1.8.1)

LICENTIA. Nuntius. Magento Email Marketing Extension REVISION: SEPTEMBER 21, 2015 (V1.8.1) LICENTIA Nuntius Magento Email Marketing Extension REVISION: SEPTEMBER 21, 2015 (V1.8.1) INDEX About the extension... 6 Compatability... 6 How to install... 6 After Instalattion... 6 Integrate in your

More information

How to Create a Simple WordPress Store Online for Free

How to Create a Simple WordPress Store Online for Free How to Create a Simple WordPress Store Online for Free The Internet is one of the most fertile grounds on which you can build a business to sell your products or services. This is because of the fact that

More information

Zapper for ecommerce. Magento Plugin Version 1.0.0. Checkout

Zapper for ecommerce. Magento Plugin Version 1.0.0. Checkout Zapper for ecommerce Magento Plugin Version 1.0.0 Branden Paine 4/14/2014 Table of Contents Introduction... 1 What is Zapper for ecommerce? Why Use It?... 1 What is Zapper?... 1 Zapper App Features...

More information

Bizrate Buyers Survey Magento Module Installation and Configuration

Bizrate Buyers Survey Magento Module Installation and Configuration Bizrate Buyers Survey Magento Module Installation and Configuration Version 0.3 December 11, 2012 Contents Overview 3 Installation Instructions 3 Configuration Options 9 Medal Placements on Default Magento

More information

[Jet-Magento Integration]

[Jet-Magento Integration] CedCommerce. All rights reserved. SUPPORT@CEDCOMMERCE.COM [Jet-Magento Integration] CedCommerce Jet-Magento Integration, an extension by CedCommerce, establishes synchronization of inventory, price, other

More information

Improved Navigation Magento Extension User Guide

Improved Navigation Magento Extension User Guide Improved Navigation Magento Extension User Guide Page 1 Table of contents: 1. Creation of attribute filters and navigation configuration 3 2. Creation of blocks with featured attribute options.. 11 3.

More information

USER MANUAL MAGEBASE DPS PAYMENT EXPRESS

USER MANUAL MAGEBASE DPS PAYMENT EXPRESS USER MANUAL MAGEBASE DPS PAYMENT EXPRESS QUICK LINKS Getting Started DPS PxPost by MageBase Settings DPS PxPay by MageBase Settings PLEASE LEAVE A REVIEW! If you are enjoying the free Magebase DPS Payment

More information

LP Express Installation and User Manual

LP Express Installation and User Manual LP Express Installation and User Manual Version: 2.0.0 Support questions: support@adeoweb.biz Table of Contents Table of Contents... 2 LP Express... 3 Installation... 3 Requirements... 3 Installation...

More information

Manual for merchants and developers

Manual for merchants and developers Manual for merchants and developers ICEPAY OpenCart Online Payment Module v 2.0.8 ICEPAY B.V. 2016-05-04 1. General Information 3 1.1 Summary (links to modules, benefits) 3 1.2 Prerequisites 4 1.3 Compatibility

More information

Purolator Eship Web Services

Purolator Eship Web Services Head Office; #1100 128 Pender St W, Vancouver, BC V6B 1R8 P: 604.336.1444 W: collinsharper.com 26-Mar-14 Purolator Eship Web Services Shipping Module Contents Configuration of Purolator... 2 Measure Units

More information

User Manual for Web. Help Desk Authority 9.0

User Manual for Web. Help Desk Authority 9.0 User Manual for Web Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic

More information

MAGENTO CERTIFIED SOLUTION SPECIALIST EXAM. What is the difference between Omni Channel and multichannel retailing?

MAGENTO CERTIFIED SOLUTION SPECIALIST EXAM. What is the difference between Omni Channel and multichannel retailing? MAGENTO CERTIFIED SOLUTION SPECIALIST EXAM Content Area 1: ecommerce Content Area 2: Magento Architecture Content Area 3: Elements of a Magento Commerce Site 3.1 Catalog 3.2 Shopping Cart 3.3 Payment 3.4

More information

emailchef for Magento: Package Tutorial

emailchef for Magento: Package Tutorial emailchef for Magento: Package Tutorial v. 2.7.5 emailchef.com 1 Introduction 2 Installation 2.1 From Magento Connect 2.2 Via file upload 2.3 Via FTP 3 Settings 3.1 Field mappings 4 Integration with Magento

More information