Hitachi PaybyFinance Magento Plugin

Size: px
Start display at page:

Download "Hitachi PaybyFinance Magento Plugin"

Transcription

1 Hitachi PaybyFinance Magento Plugin Installation Instructions v1.0 H e a l t h y W e b s i t e s a l i s t a i 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 h y w e b s i t e s. c o. u

2 Contents Magento Compatibility 3 Features 3 Server Environment 4 Prerequisite 4 Installation Instructions 4 Configure services 4 Add a new service 4 Service selector widget 5 Product pages 5 Basket page 6 Checkout 6 Enterprise Idev OneStepCheckout 7 Customising look and feel 8 Billing country message 8 Known Issues 9 Deposits 9 Order Success Transactional 9 Discount Codes 9

3 Magento Compatibility Magento Community (`1.7.*`, `1.8.*`, `1.9.*`) Magento Enterprise Edition (`1.13.*`, `1.14.*`) Features Multi-sites/store environment. Discount codes One Step Checkout Version 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 :: Hosted Card Capture DataCash :: API

4 Server Environment Prerequisite Please ensure that the following TLS1.2 cipher is available on your server for secure communication with the Pay By Finance Server, a finance application cannot be processed without this. TLS_RSA_WITH_RC4_128_SHA Installation Instructions 1. Back up your database and files 2. Copy the files from the archive to your Magento document root 3. Clear the cache 4. If you are logged in as admin, log out and in again 5. Configure services Configure services A service describes how the customer will pay back the finance. It is used to calculate monthly instalment and defines in which 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 In order to add a new service, you should have received the service data from Hitachi Capital. This data for each service consists of these parameters: Type (ID): numeric, example: 31 Name: string, for example "Interest free" APR: numeric, for example 6 Term: numeric, for example 12 Defer term: numeric, example: 6 Option term: numeric, example: 0

5 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 To add a new service, in the admin menu, select Pay By Finance > Services > Add Service. Fill in the service details and click Save. Repeat this for all services. Service selector widget Product pages If the finance widget does not appear by default on your sites product pages, the following instruction will provide a guide how to do this. 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> 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

6 <?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` 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 document will show how to add it to those templates where it's not appearing. 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> <checkout_onepage_index> <reference name="right">

7 <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');?> <div class="tool-tip" id="payment-tool-tip" style="display:none;">

8 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: ```html <div id="paybyfinance-billing-country-message"></div> ``` 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-country-message')` Using vim this can be achieved with the following command: ```vim :%s/\$('co-billing-form')/\$('paybyfinance-billing-country-message')/g ```

9 Known Issues 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 Pay By Finance 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. Discount Codes When a discount code is applied the discount is taken off after the finance which means that the deposit can show as less than 10% if the 10% deposit is selected. A fix is being developed to apply the discount to the subtotal rather than to the total after finance.

PaybyFinance Magento Plugin

PaybyFinance Magento Plugin PaybyFinance Magento Plugin Installation Instructions and User Guide Hitachi Capital Contact Name Contact Number E-Mail Address Firstname.surname@hitachicapital.co.uk PaybyFinance Team

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

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

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

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

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

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

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

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

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

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

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

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 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

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

Criteo Tags & Feed Extension for Magento

Criteo Tags & Feed Extension for Magento Criteo Tags & Feed Extension for Magento Documentation Author Web In Color Date: December 23, 2014 Version: 1.3.1 Compatibility: Magento 1.5.x 1.9.x Document Name: wic_criteo_en.pdf Contact: contact@webincolor.fr

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Installation Instructions Nochex Payment Module for Magento

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

More information

Newsletter Popup with Free Gift Coupon

Newsletter Popup with Free Gift Coupon Web Site: If you have some questions, please contact with us. Newsletter Popup with Free Gift Coupon Version 1.2.0 for Magento 1.6.x - 1.7.x - 1.8.x -1.9.x 2014m. 1 Table of Contents 1. Introduction...

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

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

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

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

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

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

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

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

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

Joomla! Override Plugin

Joomla! Override Plugin Joomla! Override Plugin What is an override? There may be occasions where you would like to change the way a Joomla! Extension (such as a Component or Module, whether from the Joomla! core or produced

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

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

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

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

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

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

Testking.M70-301.90Q

Testking.M70-301.90Q Testking.M70-301.90Q Number: M70-301 Passing Score: 800 Time Limit: 120 min File Version: 6.0 http://www.gratisexam.com/ M70-301 Magento Front End Developer Certification Exam a) I found your Questions

More information

Bubble Code Review for Magento

Bubble Code Review for Magento User Guide Author: Version: Website: Support: Johann Reinke 1.1 https://www.bubbleshop.net bubbleshop.net@gmail.com Table of Contents 1 Introducing Bubble Code Review... 3 1.1 Features... 3 1.2 Compatibility...

More information

Bazaarvoice for Magento

Bazaarvoice for Magento Bazaarvoice Bazaarvoice for Magento Extension Implementation Guide v6.1.2.3 Version 6.1.2.3 Bazaarvoice Inc. 8/5/2015 Introduction Bazaarvoice maintains a pre-built integration into the Magento platform.

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

PayPal Integration in Magento 0. 10441 Jefferson Blvd. Suite 200, Culver City, CA 90232 Magento.com

PayPal Integration in Magento 0. 10441 Jefferson Blvd. Suite 200, Culver City, CA 90232 Magento.com PayPal Integration in Magento 0 PayPal Integration in Magento 1 PayPal Integration in Magento 1. What is new in 1.4.1 2. PayPal business logic overview 3. Application integration overview 4. Debugging

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

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

Follow Up Email. Magento Extension User Guide. Official extension page: Follow Up Email. User Guide: Follow Up Email

Follow Up Email. Magento Extension User Guide. Official extension page: Follow Up Email. User Guide: Follow Up Email Follow Up Email Magento Extension User Guide Official extension page: Follow Up Email Page 1 Table of contents: 1. Follow Up Email configuration....3 2. Rule creation...6 3. Follow up email templates.....17

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

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

Magento Woopra Visitor & Event Tracking Installation and User Guide. Version 1.0

Magento Woopra Visitor & Event Tracking Installation and User Guide. Version 1.0 Magento Woopra Visitor & Event Tracking Installation and User Guide Version 1.0 Website: http://www.woopra.com Support: support@woopra.com Table of Contents 1. Installation... 2 2. Magento Configuration...

More information

MAGENTO THEME SHOE STORE

MAGENTO THEME SHOE STORE MAGENTO THEME SHOE STORE Developer: BSEtec Email: support@bsetec.com Website: www.bsetec.com Facebook Profile: License: GPLv3 or later License URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html 1

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

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

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

Promo Banners Magento Extension User Guide Official extension page: Promo Banners

Promo Banners Magento Extension User Guide Official extension page: Promo Banners Promo Banners Magento Extension User Guide Official extension page: Promo Banners Page 1 Table of contents: 1. How to add a new banner.... 3 2. General banner settings...... 4 3. Selection of banner position.....

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

Product Personalization. User manual

Product Personalization. User manual Product Personalization User manual Table of contents 1. Overview 1.1 General information 1.2 Key features 1.3 About this manual 2. Installation 2.1 Disabling compiler and cache options 2.2 Check your

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

ProxiBlue Dynamic Category Products

ProxiBlue Dynamic Category Products ProxiBlue Dynamic Category Products Thank you for purchasing our product. Support, and any queries, please log a support request via http://support.proxiblue.com.au If you are upgrading from a pre v3 version,

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

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

CUSTOM GOOGLE SEARCH PRO. User Guide. User Guide Page 1

CUSTOM GOOGLE SEARCH PRO. User Guide. User Guide Page 1 CUSTOM GOOGLE SEARCH PRO User Guide User Guide Page 1 Important Notice reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services

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

This guide shows you the process for adding ecart to your online store so that you can start selling products online.

This guide shows you the process for adding ecart to your online store so that you can start selling products online. ecart will add invaluable checkout functionality to your online store. This includes the ability to create and design a shopping cart page, add products to a cart, and create all the necessary pages for

More information

Setup Guide for PrestaShop and BlueSnap

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

More information

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

ultimo theme Update Guide Copyright 2012-2014 Infortis All rights reserved ultimo theme Update Guide Copyright 2012-2014 Infortis All rights reserved 1 1. Important changes Here you can find description of the most important changes in selected versions. List of all changes in

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

INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR WOOCOMMERCE

INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR WOOCOMMERCE INSTALLATION AND SETUP HANDBOOK OF PAYU LATAM s PLUGIN FOR Woocommerce is a Wordpress plugin that facilitates the creation of an online store integrated to the current site. So that your customers can

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

Module Google Remarketing + Dynamic

Module Google Remarketing + Dynamic Module Google Remarketing + Dynamic Date : December 13 th, 2013 Business Tech Installation Service If you need help installing and configuring your module, we can offer you an installation service, which

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

About the Authors About the Technical Reviewer

About the Authors About the Technical Reviewer About the Authors p. xiii About the Technical Reviewer p. xv Introduction p. xvii Starting an E-Commerce Site p. 1 Deciding Whether to Go Online p. 1 Getting More Customers p. 2 Making Customers Spend

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

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

SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit

SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit SEO Toolkit Magento Extension User Guide Official extension page: SEO Toolkit Page 1 Table of contents: 1. SEO Toolkit: General Settings..3 2. Product Reviews: Settings...4 3. Product Reviews: Examples......5

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

CORNERDROP OVERVIEW & CORNERDROP MAGENTO INSTALLATION INSTRUCTIONS CORNERDROP.COM/CONTACT-US

CORNERDROP OVERVIEW & CORNERDROP MAGENTO INSTALLATION INSTRUCTIONS CORNERDROP.COM/CONTACT-US 2015 Offer a click and collect solution with CornerDrop today to all your customers without changing any fulfilment agreements or your packing processes. We are the fastest growing UK wide click and collect

More information

SFC Featured Categories, Magento Extension Documentation

SFC Featured Categories, Magento Extension Documentation SFC Featured Categories, Magento Extension Documentation Copyright 2009 2010. StoreFront Consulting, Inc. All rights reserved. Developer: StoreFront Consulting, Inc. Platform: Magento Magento Version Compatibility:

More information

MAGENTO Migration Tools

MAGENTO Migration Tools MAGENTO Migration Tools User Guide Copyright 2014 LitExtension.com. All Rights Reserved. Magento Migration Tools: User Guide Page 1 Content 1. Preparation... 3 2. Setup... 5 3. Plugins Setup... 7 4. Migration

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

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

Yu Lin COMMERCE. Technology and Communication

Yu Lin COMMERCE. Technology and Communication Yu Lin Online store based on MAGENTO E- COMMERCE Technology and Communication 2015 VAASAN AMMATTIKORKEAKOULU UNIVERSITY OF APPLIED SCIENCES Bachelor of Engineering In Information Technology ABSTRACT Author

More information

Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one

Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one Site Management Abandoned Shopping Cart Report Best Viewed Products Report Control multiple websites and stores from one Best Purchased Products Report Administration Panel with ability to share as much

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

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

Manual. Version: 1.0.0

Manual. Version: 1.0.0 Manual Version: 1.0.0 Table of Contents I. INTRODUCTION... 3 II. INSTALLATION... 5 a. System Requirements... 5 b. Installation... 5 c. Configure PayPal IPN... 5 d. Cron Setup... 6 e. Upload Email Logo...

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

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA

1: 2: 2.1. 2.2. 3: 3.1: 3.2: 4: 5: 5.1 5.2 & 5.3 5.4 5.5 5.6 5.7 5.8 CAPTCHA Step by step guide Step 1: Purchasing a RSMembership! membership Step 2: Download RSMembership! 2.1. Download the component 2.2. Download RSMembership! language files Step 3: Installing RSMembership! 3.1:

More information