Product Personalization. User manual

Size: px
Start display at page:

Download "Product Personalization. User manual"

Transcription

1 Product Personalization User manual

2 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 current theme/package 2.3 Extracting the extension files 2.4 Upload files to web server 3. Admin Options 4. Form Options / Working with xml 4.1 Text input area (textarea) form element 4.2 Date Form Element 4.3 Select Box Form Element 4.4 File Form Element 4.5 Check Box Form Element 5. Personalization information in Sale Orders 6. Extension template files 7. More information

3 1. Overview 1.1 General information Product Personalization extension allows you to create a simple customization with form fields of your choice, and attach it to your products that support personalization option. The customers then can enter personalization details, add the product to the shop cart and continue shopping. Before proceeding to checkout, he will have the option to review the personalization values that he entered just before he goes on with the checkout process. After the checkout has been completed, you will see the personalization information he entered in your Sale Orders section of your Magento administration. 1.2 Key features Create a custom personalization form and attach it to the products on your Magento store Give your Customers the option to personalize the products they are purchasing View personalized information in Sale Orders Have the personalization info shown on product details page and/or checkout page Optionally set the personalization fields as required 1.3 About this manual This user manual is intended to be used as a step-by-step guide for installing and configuring Product Personalization extension for Magento.

4 2. Installation The extension comes in a.zip file ready for extraction to your computer or web server. 2.1 Before extracting the files you should make sure that compilation and caching options are disabled. Compilation: Log in to your Magento admin panel and go to System>Tools>Compilation. If the Compiler Status does not read "Disabled", click the Disable button in the upper right corner. Cache options: Go to System>Cache Management to view the current status of your cache. To disable cache options click Select All on the left side, and from the drop-down menu select Disable, then Submit.

5 2.2 Check which package/theme your Magento website uses. By default, Magento uses default package/theme structure unless you installed a custom package/theme. To check your current package/theme, go to System>Configuration and click Design on the left-hand menu If the Current Package Name is "default", you are using the default package. If it isn't, please take a note of the package you are using. On the same page, in the Themes box, you'll see the name of the theme your Magento website is using. If the fields are blank, your current theme is default. If not, please take a note of your current theme. 2.3 Extract the extension files to your local computer. If your Magento website doesn't use the default package, browse the extension files, navigate to /app/design/frontend/ folder of the extracted extension files, and rename the default folder to your package name. In case your Magento doesn t use the default theme navigate to /app/design/frontend/default or your package name/ folder and rename the default folder to match the name of your theme.

6 2.4 Upload extension files to Magento web server. We recommend that you log out of administration and log back in when you install extension to your Magento or you could be presented with 404 page when trying to save the extension settings. When the upload is completed, log in to your Magento administration. and go to System>Configuration from your admin menu. On the left submenu of the configuration page there should be the new tab labeled SMDesign Extensions Config and under it the Product Customization Config. Please click on the Product Customization Config to access the extension s options.

7 3. Admin Options In the General options box you can select the following options: Visible on product details page: This option, if set to Yes, will display the Personalize button on your product details page (if the product personalization is allowed on that particular product which will be covered later on ). Show personalization page right before onepage checkout: This option inserts the customization page between the shop cart and proceed to checkout steps If you set both these options to No, Personalize button will not be shown on product details page, and your customers will go straight to checkout from the shop cart page. It would be as if the extension isn t installed at all on your Magento. In the Calendar Options box you can select the skin for the calendar pop up. The calendar pop up appears on the Personalization form in case you decide to use the date values for the product personalization.

8 You can additionally enable or disable the personalization on each individual product on your Magento by setting the Product needs to be personalized option on each product to Yes/No.

9 You can set the Personalize button and block to appear on the product details page. You can later customize the actual personalization form, as well as the html block and button to fit to your Magento theme, and to show the customized text. Alternatively, if you are familiar with the Magento template system, you can change the position of the Personalize html block on the product details page, to fit your Magento theme. Product Personalization Button on product details page.

10 The Product Personalization Form Page, if enabled, will list all the products in the shop cart which have product personalization enabled, and allow the user to re-check/customize the values they entered in the form one more time, before they proceed to checkout. Product Personalization Form page between shop cart and checkout pages. You can also set personalization options to be required, so the user has to enter them in order to purchase the product.

11 4. Form Options / Working with xml Following Magento standards for developers, we ve enabled you to create / customize the personalization form fields using the Magento s standard xml configuration documents. If you are experienced with editing Magento s layout or config files, you will most likely recognize the format right away, and won t have any issues creating your configuration form. If not, that s not a problem at all. Just go through this section of the tutorial and as it explains everything there is to know about creating the personalization form. The form configuration file can be found in: /your magento root folder/app/code/community/smdesign/productpersonalization/etc/ folder, and it s the file named : product_personalization.xml Please locate the product_personalization.xml file, and open it in your favorite editor. The start of the file should look something like this (this is the much shorter version of the config ) : <?xml version="1.0"?> <config> <personalization> <groups> <general> <label>addiconal information</label> <frontend_type>text</frontend_type> <sort_order>10</sort_order> <fields> <personal_information> <label>personal Information </label> <frontend_type>textarea</frontend_type> <required>true</required> </personal_information> </fields> </general> </groups> </personalization> </config> The important node is the <fields> node, as this is where you need to enter/configure the form field elements that you want to have on your personalization form. On the example code above, there s only one form element defined, and it s the textarea element named personal_information and labeled Personal information.

12 As an example, here s how the personalization form with the config above would look like on the product details page: And here s the config code for that element in the form: <personal_information> <label>personal Information </label> <frontend_type>textarea</frontend_type> <required>true</required> </personal_information> By changing the values in the code, you can change the label, and the type of the element in the form. You can also set the order of the elements and the required option on certain elements.

13 4.1 Text input area form element To add the textarea (text input area) element to the form you need to create a new node and add it to the <fields> node of the configuration file, with the <frontend_type>textarea</frontend_type> To open a node for the new element, decide how you d like that element to be called For example, if you want the user to enter its name in the personalization form field. you could name that form element user_name : <user_name> *** the rest of the code will go here *** </user_name> After you ve created a node for user_name, you can add its label and form element type. To have the user_name textarea form element, you would need to add the <frontend_type>textarea</frontend_type> in the user_name node: <user_name> <frontend_type>textarea</frontend_type> </user_name> If you would like to have the label explaining the user what to enter, you should add the label to the user_name node: <user_name> <label>user Name </label> <frontend_type>textarea</frontend_type> </user_name> Optionally, if you d like this form field to be required, add the required option to the user_name node: <user_name> <label>user Name </label> <frontend_type>textarea</frontend_type> <required>true</required> </user_name>

14 The whole config file would look like this: <?xml version="1.0"?> <config> <personalization> <groups> <general> <label>additional information</label> <frontend_type>text</frontend_type> <sort_order>10</sort_order> <fields> <user_name> <label>user Name </label> <frontend_type>textarea</frontend_type> <required>true</required> </user_name> </fields> </general> </groups> <personalization> <config> And on the Product details page it would look like this: As you can see, you can customize the textarea filed of the Personalize Form to your liking, including the label text, the name of the field and the option for the field to be required. You can also add multiple textarea fields to the form (please make sure that the names are different) and change the position of the form fields by editing the config file.

15 4.2 Date Form Element To add the date element to the form you need to create a new node and add it to the <fields> node of the configuration file, with the <frontend_type>text</frontend_type> and: <frontend_model>product_personalization/system_config_date</frontend_model> To open a node for the new element, decide on its name first. For example, if you want user to enter delivery date in the personalization form field, you could name that form element delivery_date : <delivery_date> *** the rest of the code will go here *** </delivery_date> After you ve created a node for delivery_date, you can add its label and form element type. To have the delivery_date form element textarea, you would need to add the <frontend_type>textarea</frontend_type> in the delivery_date node: <delivery_date> <frontend_type>textarea</frontend_type> <frontend_model>product_personalization/system_config_date</frontend_model> </delivery_date> To explaining the user what he needs to enter, you need to add the label to the delivery_date element: <delivery_date> <label>delivery Date </label> <frontend_type>textarea</frontend_type> <frontend_model>product_personalization/system_config_date</frontend_model> </delivery_date> And if you want this form field to be required, add the required option to the delivery_date node: <delivery_date> <label>delivery Date</label> <frontend_type>textarea</frontend_type> <frontend_model>product_personalization/system_config_date</frontend_model> <required>true</required> </delivery_date>

16 On product details page it looks like this: The style/color of the pop up calendar can be set via Magento administration on Product Personalization Config page. We recommend that you try out the various themes available for the calendar, and see which one fits your Magento theme best.

17 4.3 Select Box Form Element To add the select element to the form you need to create a new node and add it to the <fields> node of the configuration file, with the <frontend_type>select</frontend_type> and: <source_model>adminhtml/system_config_source_yesno</source_model> To open a node for the new element, decide on the name of the element. select_example. <select_example> *** the rest of the code will go here *** </select_example> After you ve created a node for select_example, you can add it s label and form element type. To have the selext_example form element select box, you would need to add the <frontend_type>select</frontend_type> in the selext_example node: <select_example> <frontend_type>select</frontend_type> <source_model>adminhtml/system_config_source_yesno</source_model> </select_example> If you want to have the label explaining the user what to enter, you should add the label to the select_example node: <select_example> <label>example of the select box </label> <frontend_type>select</frontend_type> <source_model>adminhtml/system_config_source_yesno</source_model> </select_example> Optionally, if you can set this form field to be required by adding the required option to the selext_example node: <select_example> <label>here s an example of the select box </label> <frontend_type>select</frontend_type> <source_model>adminhtml/system_config_source_yesno</source_model> <required>true</required> </select_example>

18 On the product detail page, it looks like this: The code in the example will produce the simplest Yes/No select box values. We found that this could be useful if you d like to provide optional customization options to the users.

19 4.4 File Form Element To add the file upload element to the form you need to create a new node and add it to the <fields> node of the configuration file, with the <frontend_type>file</frontend_type> and: <allowed_file_types>png, gif, jpg, jpeg, eps, ai, pdf</allowed_file_types> To open a node for the new element, decide how you d like that element to be called. In this example we will call it file_example. <file_example> *** the rest of the code will go here *** </file_example> After you ve created a node for file_example, you can add its label and form element type. To have the file_example form element select box, you would need to add the <frontend_type>file</frontend_type> in the file_example node: <file_example> <frontend_type>file</frontend_type> <allowed_file_types>png, gif, jpg, jpeg, eps, ai, pdf</allowed_file_types> </file_example> To add the label that will explain the user what he needs to enter, you should add the label to the file_example node: <file_example> <label>please upload a file </label> <frontend_type>file</frontend_type> <allowed_file_types>png, gif, jpg, jpeg, eps, ai, pdf</allowed_file_types> </select_example> To make this form field to required, add the required option to the file_example node: <file_example> <label>please upload a file </label> <frontend_type>file</frontend_type> <allowed_file_types>png, gif, jpg, jpeg, eps, ai, pdf</allowed_file_types> <required>true</required> </select_example> If you need to add further explanation of the particular personalization option, we recommend that you add a comment option: <file_example> <label>please upload a file </label> <frontend_type>file</frontend_type> <allowed_file_types>png, gif, jpg, jpeg, eps, ai, pdf</allowed_file_types> <required>true</required> <comment><![cdata[ <p>allowed file types: png, gif, jpg, jpeg, eps, ai, pdf. Not all browsers support all these formats!</p> ]]></comment> </file_example>

20 The end result on the product page: 4.5 Check Box Form Element To add the check box element to the form you need to create a new node and add it to the <fields> node of the configuration file, with the <frontend_type>checkbox</frontend_type> To open a node for the new element, decide how you d like that element to be called, in this example we will call it checkbox_example. <checkbox_example> *** the rest of the code will go here *** </ checkbox _example> After you ve created a node for checkbox_example, you can add the label and form element type. To have the checkbox_example form element check box, you would need to add the <frontend_type>checkbox</frontend_type> in the checkbox_example node: <checkbox_example> <frontend_type>checkbox</frontend_type> </checkbox_example>

21 To add the label explaining the user what he needs to enter, add the label to the checkbox_example node: <checkbox_example> <label> Example of the check box </label> <frontend_type>checkbox</frontend_type> </checkbox_example> And optionally, to make this form field required, add the required option to the checkbox_example node: <checkbox_example> <label>example of the check box </label> <frontend_type>checkbox</frontend_type> <required>true</required> </checkbox_example> It would produce this: There is no limit to the number of form elements, or the number of form element type in a form. You can, for example have multiple text areas or multiple checkboxes combined in one form. You can also combine elements and put them in any order you want. You can set which elements are required (if any) and add comments and/or labels to the form elements as you please and name the form elements however it fits you best.

22 5. Personalization information in Sale Orders Here s an example of the filled out form with multiple personalization form elements on a demo configurable product: Now we will go through with the checkout now, to show you how the product personalization options show up in your Magento administration. Once the checkout has been completed and the order is placed, please log in to your Magento administration and select Sales>Orders from the admin menu.

23 On the orders page, locate the order that has products with the personalization options and click on the view link to view the order. You ll notice the Product Personalization tab. Click on that tab and you will be able to see the values that the customer entered in the Personalization form. 6. Extension template files Though the extension has multiple template and layout files, there are two template files that you might want to locate and customize to fit your magento theme. The first one is the template that holds the personalization form on the product details page, it s called the wrapper.php and it can be found in : /app/design/frontend/default/default/template/product_personalization/catalog/product/options/ folder. (Please remember to replace the /default/default/package/theme to your package/theme name in case your Magento system is not using the default/default package/theme structure).

24 If you open that template for editing, you can see the default text holder content, the Lorem ipsum text placed in a paragraph. You can replace that text with the information relevant to your Magento store, or you can simply remove the text. 7. More information For more information about Product Personalization, or any other Magento extension by ExtensionsMall, please visit our website:

Installation Instructions Magento Color Swatch Extension

Installation Instructions Magento Color Swatch Extension Installation Instructions Magento Color Swatch Extension Copyright 2010 SMDesign smdesign.rs All rights reserved. Overview This tutorial document describes the basic requirements of Magento Color Swatch

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

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

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

Shopping Cart Software

Shopping Cart Software Shopping Cart Software QuickStart Guide 1 Please note: The Quick Start guide covers only the minimum requirements to get your cart up and running; there are many more features for you to take advantage

More information

Setting Up the Mercent Marketplace Price Optimizer Extension

Setting Up the Mercent Marketplace Price Optimizer Extension For Magento ecommerce Software Table of Contents Overview... 3 Installing the Mercent Marketplace Price Optimizer extension... 4 Linking Your Amazon Seller account with the Mercent Developer account...

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

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

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

ITCS QUICK REFERENCE GUIDE: EXPRESSION WEB SITE

ITCS QUICK REFERENCE GUIDE: EXPRESSION WEB SITE Create a One-Page Website Using Microsoft Expression Web This tutorial uses Microsoft Expression Web 3 Part 1. Create the Site on your computer Create a folder in My Documents to house the Web files. Save

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

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Content Management System

Content Management System Content Management System XT-CMS INSTALL GUIDE Requirements The cms runs on PHP so the host/server it is intended to be run on should ideally be linux based with PHP 4.3 or above. A fresh install requires

More information

Create a Simple Website. Intel Easy Steps 1 2012 Intel Corporation All rights reserved.

Create a Simple Website. Intel Easy Steps 1 2012 Intel Corporation All rights reserved. Create a Simple Website Intel Easy Steps 1 2012 Intel Corporation Website Creating a Simple Website As more and more people are using the Internet to get information, it has become very important for businesses

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

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

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

nopcommerce User Guide

nopcommerce User Guide nopcommerce User Guide Open source ecommerce solution Version 1.90 Copyright Notice Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

CMS Training. Prepared for the Nature Conservancy. March 2012

CMS Training. Prepared for the Nature Conservancy. March 2012 CMS Training Prepared for the Nature Conservancy March 2012 Session Objectives... 3 Structure and General Functionality... 4 Section Objectives... 4 Six Advantages of using CMS... 4 Basic navigation...

More information

Umbraco Content Management System (CMS) User Guide

Umbraco Content Management System (CMS) User Guide Umbraco Content Management System (CMS) User Guide Content & media At the bottom-left of the screen you ll see 2 main sections of the CMS Content and Media. Content is the section that displays by default

More information

DPD shipping module documentation. Magento module version 2.0.3

DPD shipping module documentation. Magento module version 2.0.3 DPD shipping module documentation Magento module version 2.0.3 Table of Contents Introduction...3 Document version history...3 Definitions...3 Short user manual...3 Added functionality...4 Use cases...4

More information

DIY Email Manager User Guide. http://www.diy-email-manager.com

DIY Email Manager User Guide. http://www.diy-email-manager.com User Guide http://www.diy-email-manager.com Contents Introduction... 3 Help Guides and Tutorials... 4 Sending your first email campaign... 4 Adding a Subscription Form to Your Web Site... 14 Collecting

More information

Fortis Theme Update Guide

Fortis Theme Update Guide Fortis Theme Update Guide Copyright 2012 Infortis 1 Table of Contents 1. How to update the theme?...3 2. Important changes...5 2.1 Fortis Theme version 1.3.1...5 2.2 Fortis Theme version 1.3.0...5 2.3

More information

How to Attach the Syllabus and Course Schedule to a Content Item

How to Attach the Syllabus and Course Schedule to a Content Item How to Attach the Syllabus and Course Schedule to a Content Item Getting Started Part of preparing your course for delivery to students includes uploading your syllabus and course schedule to your online

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

DocuSign Connect for Salesforce Guide

DocuSign Connect for Salesforce Guide Information Guide 1 DocuSign Connect for Salesforce Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign

More information

Important Notice. All company and brand products and service names are trademarks or registered trademarks of their respective holders.

Important Notice. All company and brand products and service names are trademarks or registered trademarks of their respective holders. 1 Important Notice MageWorx reserves the right to make corrections, modifications, enhancements, improvements, and other changes to its products and services at any time and to discontinue any product

More information

Document Services Online Customer Guide

Document Services Online Customer Guide Document Services Online Customer Guide Logging in... 3 Registering an Account... 3 Navigating DSO... 4 Basic Orders... 5 Getting Started... 5 Attaching Files & Print Options... 7 Advanced Print Options

More information

Google Sites: Creating, editing, and sharing a site

Google Sites: Creating, editing, and sharing a site Google Sites: Creating, editing, and sharing a site Google Sites is an application that makes building a website for your organization as easy as editing a document. With Google Sites, teams can quickly

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Shopping Cart Manual. Written by Shawn Xavier Mendoza

Shopping Cart Manual. Written by Shawn Xavier Mendoza Shopping Cart Manual Written by Shawn Xavier Mendoza Table of Contents 1 Disclaimer This manual assumes that you are using Wix.com for website creation, and so this method may not work for all other online

More information

Milano Premium Responsive Magento Theme. 2013 ShopShark

Milano Premium Responsive Magento Theme. 2013 ShopShark Milano Premium Responsive Magento Theme Milano Premium Responsive Magento Theme In this document, you will find detailed instructions on installing and using the Milano Magento Theme. We have made every

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

APP ANALYTICS PLUGIN

APP ANALYTICS PLUGIN support@magestore.com Phone: 084.4.8585.4587 APP ANALYTICS PLUGIN USER GUIDE Table of Contents 1. INTRODUCTION 2. HOW TO INSTALL 3. HOW TO SET UP YOUR GOOGLE ANALYTICS ACCOUNT 4. HOW TO CONFIGURE IN MAGENTO

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

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

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

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

PassKey Manager. Schoolwires Centricity

PassKey Manager. Schoolwires Centricity Schoolwires Centricity Table of Contents Introduction... 1 What Provides... 1 What Does Not Provide... 1 Definitions for... 1 Manage PassKeys in Site Manager... 2 Access... 2 Create PassKeys... 2 Create

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

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

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

nopcommerce User Guide

nopcommerce User Guide nopcommerce User Guide Open source ecommerce solution Version 2.40 Copyright Notice Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

Creating a website using Voice: Beginners Course. Participant course notes

Creating a website using Voice: Beginners Course. Participant course notes Creating a website using Voice: Beginners Course Topic Page number Introduction to Voice 2 Logging onto your website and setting passwords 4 Moving around your site 5 Adding and editing text 7 Adding an

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

CARSTORE RESPONSIVE MAGENTO THEME

CARSTORE RESPONSIVE MAGENTO THEME CARSTORE RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. General about Magento Chapter II. Features and elements of the template Chapter III. Extensions Chapter IV. Troubleshooting

More information

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation Rochester Institute of Technology Finance and Administration Drupal 7 Training Documentation Written by: Enterprise Web Applications Team CONTENTS Workflow... 4 Example of how the workflow works... 4 Login

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

Admin Reference Guide. PinPoint Document Management System

Admin Reference Guide. PinPoint Document Management System Admin Reference Guide PinPoint Document Management System 1 Contents Introduction... 2 Managing Departments... 3 Managing Languages... 4 Managing Users... 5 Managing User Groups... 7 Managing Tags... 9

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

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

MAGENTO QUICK START. Magento users New and relatively new Mostly on Community Ed. > 1 year; 16% Not at all yet; 33% 3 mo.

MAGENTO QUICK START. Magento users New and relatively new Mostly on Community Ed. > 1 year; 16% Not at all yet; 33% 3 mo. Summer Webinar Series August 17, 2010 MAGENTO QUICK START Welcome! I am Kara Heinrichs Magento, Inc. GM, Education, Training & Certification Purpose of today s session Quick Start to expose you to a range

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

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

More information

SAHARA FASHION15 RESPONSIVE MAGENTO THEME

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

More information

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130 UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS Silva Introduction to Silva Document No. IS-130 Contents What is Silva?... 1 Requesting a website / Web page(s) in Silva 1 Building the site and making

More information

How to Create and Send a Froogle Data Feed

How to Create and Send a Froogle Data Feed How to Create and Send a Froogle Data Feed Welcome to Froogle! The quickest way to get your products on Froogle is to send a data feed. A data feed is a file that contains a listing of your products. Froogle

More information

Setting Up Your Online ecommerce Shopping Cart

Setting Up Your Online ecommerce Shopping Cart Setting Up Your Online ecommerce Shopping Cart Setting Up Your Online ecommerce Shopping Cart Contents o Building Your ecommerce Shopping Cart o Creating Products o Configuring Shipping & Verifying Taxes

More information

Making a Website with Hoolahoop

Making a Website with Hoolahoop Making a Website with Hoolahoop 1) Open up your web browser and goto www.wgss.ca/admin (wgss.hoolahoop.net temporarily) and login your the username and password. (wgss.ca is for teachers ONLY, you cannot

More information

High Impact email & Alpha Five: A Mail Merge Guide.

High Impact email & Alpha Five: A Mail Merge Guide. High Impact email & Alpha Five: A Mail Merge Guide. Performing a Mail Merge that utilizes your Alpha Five database takes just a few moments and allows you to easily send HTML messages to your contacts.

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

Basic Web Development @ Fullerton College

Basic Web Development @ Fullerton College Basic Web Development @ Fullerton College Introduction FC Net Accounts Obtaining Web Space Accessing your web space using MS FrontPage Accessing your web space using Macromedia Dreamweaver Accessing your

More information

M-CONNECT PRODUCT FILE UPLOAD EXTENSION FOR MAGENTO COMMERCE

M-CONNECT PRODUCT FILE UPLOAD EXTENSION FOR MAGENTO COMMERCE M-CONNECT PRODUCT FILE UPLOAD EXTENSION FOR MAGENTO COMMERCE Overview This extension allows admin to upload files to products from Admin Panel products section, it allows you to share more information

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

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

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

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

Hello. What s inside? Ready to build a website?

Hello. What s inside? Ready to build a website? Beginner s guide Hello Ready to build a website? Our easy-to-use software allows to create and customise the style and layout of your site without you having to understand any coding or HTML. In this guide

More information

Sitecore InDesign Connector 1.1

Sitecore InDesign Connector 1.1 Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page

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

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

Content Management System QUICK START GUIDE

Content Management System QUICK START GUIDE Content Management System QUICK START GUIDE Revised 03/10/11 TABLE OF CONTENTS Pg. 1... Logging In Pg. 2... Navigating to your site folder Pg. 2... The Folder Tree, Site Structure and Wire Frames Explained.

More information

Work with PassKey Manager

Work with PassKey Manager Work with PassKey Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc. All other

More information

Liferay Portal 4.0 - User Guide. Joseph Shum Alexander Chow

Liferay Portal 4.0 - User Guide. Joseph Shum Alexander Chow Liferay Portal 4.0 - User Guide Joseph Shum Alexander Chow Liferay Portal 4.0 - User Guide Joseph Shum Alexander Chow Table of Contents Preface... viii User Administration... 1 Overview... 1 Administration

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

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

Editing your Website User Guide

Editing your Website User Guide User Guide Adding content to your Website To add or replace content on your website you will need to log in to your Content Management System (Joomla) using your username and password. If you do not already

More information

CHAPTER 26 - SHOPPING CART

CHAPTER 26 - SHOPPING CART CHAPTER 26 - SHOPPING CART ecommerce Hosting With ihoststudio's Shopping Cart Sell your items on the web with the ihoststudio shopping cart. Product catalogs Shopping cart Credit Card Payments Store control

More information

DocuShare Quick Search Supplement

DocuShare Quick Search Supplement DocuShare Quick Search Supplement Publication date: March 2011 This document supports DocuShare Release 6.6.1 Prepared by: Xerox Corporation DocuShare Business Unit 3400 Hillview Avenue Palo Alto, California

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

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites Asbru Ltd Asbru Ltd wwwasbrusoftcom info@asbrusoftcom Asbru Web Content Easily & Inexpensively Create, Publish & Manage Your Websites 31 March 2015 Copyright 2015 Asbru Ltd Version 92 1 Table of Contents

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

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

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

Sitecore E-Commerce Cookbook

Sitecore E-Commerce Cookbook Sitecore E-Commerce Cookbook Rev: 2013-07-23 Sitecore E-Commerce Services 2.1 on CMS 7.0 Sitecore E-Commerce Cookbook A marketer's guide to Sitecore E-Commerce Services Sitecore E-Commerce Cookbook Table

More information

How to Add Users 1. 2.

How to Add Users 1. 2. Administrator Guide Contents How to Add Users... 2 How to Delete a User... 9 How to Create Sub-groups... 12 How to Edit the Email Sent Out to New Users... 14 How to Edit and Add a Logo to Your Group's

More information

Mail Chimp Basics. Glossary

Mail Chimp Basics. Glossary Mail Chimp Basics Mail Chimp is a web-based application that allows you to create newsletters and send them to others via email. While there are higher-level versions of Mail Chimp, the basic application

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

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

Bonita Open Solution. Introduction Tutorial. Version 5.7. Application Development User Guidance Profile: Application Developer

Bonita Open Solution. Introduction Tutorial. Version 5.7. Application Development User Guidance Profile: Application Developer Bonita Open Solution Version 5.7 Introduction Tutorial Application Development User Guidance Profile: Application Developer Contents Introduction...5 Part 1. Tutorial Process Overview...6 Part 2. Begin

More information

How To Manage Your Website On A Webmaster.Com (Webmaster) On A Pc Or Mac Or Macbook Or Macintosh (Web) On Pc Or Ipa (Web).Com (For Mac) On Your Pc Or Pc Or Your

How To Manage Your Website On A Webmaster.Com (Webmaster) On A Pc Or Mac Or Macbook Or Macintosh (Web) On Pc Or Ipa (Web).Com (For Mac) On Your Pc Or Pc Or Your Creative Stream Content Management System (CMS) The Creative Stream CMS is modular and as such installations may vary. Therefore certain sections of this document may not be relevant to your CMS. Contents

More information

LiveStreamingCDN Producer User s Guide

LiveStreamingCDN Producer User s Guide LiveStreamingCDN Producer User s Guide A LiveStreamingCDN Producer account offers a variety of premium features in addition to live and VOD streaming capabilities. A Producer account comes with a multi-device

More information

Salesforce-Wrike Integration Setup Manual

Salesforce-Wrike Integration Setup Manual Salesforce-Wrike Integration Setup Manual This document has been designed for Salesforce administrators. It will guide you through the setup process for the integration between your Salesforce instance

More information

DYMO DIRECTPRINT MANUAL

DYMO DIRECTPRINT MANUAL DYMO DIRECTPRINT MANUAL Version: 1.0 Website: Support: www.aquivemedia.n/shop/ info@aquive.nl TABLE OF CONTENTS DYMO Directprint Manual... 1 1. Magento Installation... 3 1.1. Backup your data... 3 1.2.

More information

DREAMWEAVER BASICS. A guide to updating Faculty websites Created by the Advancement & Marketing Unit

DREAMWEAVER BASICS. A guide to updating Faculty websites Created by the Advancement & Marketing Unit DREAMWEAVER BASICS A guide to updating Faculty websites Created by the Advancement & Marketing Unit Table of content Tip: Click on the links below to go straight to the desired section The W (Web Services)

More information

Using JCPS Online for Websites

Using JCPS Online for Websites Getting Started Before you begin, an Online Group must be created for you. Send an email requesting the group along with the username of anyone you want added as an editor to mike.broderick@jefferson.kyschools.us.

More information

Setting up a site directly to the H-drive in Dreamweaver CS4

Setting up a site directly to the H-drive in Dreamweaver CS4 Department of Technology Assistance Overview: This document will describe how to setup a personal website via the H-drive at RU using Dreamweaver

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

Altima Lookbook Free Extension v. 0.1.0

Altima Lookbook Free Extension v. 0.1.0 Altima Interactive 2012 Altima Interactive www.altima.net.au Altima Lookbook Free Extension v. 0.1.0 Compatibility: Community Edition: 1.4.x.x, 1.5.x.x, 1.6.x.x Enterprise Edition: 1.9 and later Installation

More information