Shop by Manufacturer Custom Module for Magento
|
|
|
- Darlene Dalton
- 9 years ago
- Views:
Transcription
1 Shop by Manufacturer Custom Module for Magento
2 TABLE OF CONTENTS Table of Contents Table Of Contents INTRODUCTION Overview Requirements Features Features accessible from Front End Features accessible from Back End Installation Implementation Manual Installation Configuration Admin Configuration Manufacturer Setting Enabling the Module Creating Attribute Manufacturer Manager Manage Manufacturer Add Manufacturer Assigning Products to Manufacturer Frontend Configuration Placing Shop by Manufacturer where required Technical Information Un-installation Unsupported Features & Known Issues Troubleshooting...18
3 1. INTRODUCTION This document is intended as a technical resource for the installation, setup and use of the Shop By Manufacturer Custom module for Magento. The extension is Plug& Play and compatible with Magento Community Edition v1.6 and Above 2. Overview Magento is an open source e-commerce CMS that uses a LAMP (Linux, Apache, MySQL, PHP) architecture. As an open source platform, the modifications one could make to their website are limitless. With this in mind the integration was developed to incorporate as close to core Magento API functionality as possible. Shop by Manufacturer Extension is developed primarily for the people who trust some brands and want to buy products of that brand only. This extension allows you to create new brands and connect products to those brands. The extension generates a landing page with all created brands. Clicking on any brand link takes you to that specific brand landing page. 3. Requirements 1. Magento Community Edition v1.6 and Above 2. Magento Shop By Manufacturer Module from Magento Connect 3. Magento Administrative Privileges.
4 4. Features This is a Third Party Module to integrate with Magenta, features have been documented below: 4.1 Features accessible from Front End 1. Display brand image (logo) in the frontend you can display selected brands on home page. While clicking on any brand logo, you will be redirected to Shop by Manufacturer listing page. 2. Call Shop By Manufacturer block anywhere You can call this block on Home page and from there you can navigate to brands listing page. 3. Allows to feature certain brands You can feature some brands and show only featured brands on home page. You can enable/disable brands to be shown on home page. 4. Automatically creates a landing page with all brands created A landing page will automatically be created for every brand created through admin 4.2 Features accessible from Back End 1. Creating Brands You can add, edit, delete, enable/disable brands. 2. Priority of Brands You can assign priority to every brand, so the most important ones will be displayed first. If the priority is not set up, brands will be sorted in the order in which they are created. 3. Assign products to brands You can assign products to every brand. Only those products will appear in brands detail page. 4. Multi-store support You can specify stores where brands are visible.
5 5. Installation 5.1 Implementation Steps to Install This Module 1. Install the Shop by Manufacturer Module from Magento Connect 2. After the installation is complete, browse to your Magento homepage in order to complete the module install 3. You should now have a General, Frontend and Notifications section in your Admin Panel under System>Configurations> Manufacturer Further details are given in the configuration section 5.2 Manual Installation 1. Obtain a copy of the Shop by Manufacturer Module 2. Unzip the Module files into a local directory. 3. Move all files into their respective directories in your Magento installation directory on the FTP server as they appear after unzipping the package. 4. Clear your store cache. 5. In your Magento admin panel, this is under System > Cache Management. 6. Log Out of your Magento Admin and then log back in. 7. This refreshes the Magento ACL date which effects your administrative permissions. You will not see expected module behavior until you do this. You may also need to refresh your cache. 8. After all copying is complete browse to your Magento homepage in order to complete the module install 9. You should now have a General and Frontend section in your Admin Panel under System>Configurations>Manufacturer Further details are given in the configuration section
6 6. Configuration 6.1 Admin Configuration All configurations are handled in the Magento Admin Panel. The Configuration is located in Admin PanelZeon Extensions [Refer Figure 6-1] Figure Manufacturer Setting Enabling the Module Login to admin panel and navigate to Zeon Extensions ->Manufacturer-> Manage Manufacturer Settings General Enable the Extension by selecting Enabled field to Yes[Refer Figure 6-2] Figure 6-2
7 Frontend Enter Manufacturers Attribute Code. This is going to be your attribute for brands. Figure Creating Attribute Go to Catalog->Manage Attributes[Refer Figure 6-4] Figure 6-4
8 Figure 6-5 Then click on Add New Attribute and then create an attribute called manufacturer (The attribute code should be same as what you entered in Manufacturers Attribute Code ). We had entered manufacturer there. So we will create an attribute with the attribute code as manufacturer Figure 6-6 As you can see in the above figure attribute code is manufacturer. Its scope should be kept Global. And catalog input type for store owner should be Dropdown. [Refer Figure 6-7]
9 Figure 6-7 In the next tab, Use in Layered Navigation should be selected as Filterable (with results) Then select next tab i.e. Manage Label/Options. In the options enter all the brands names that you want to create. Figure 6-8
10 Save the attribute. Then go to Catalog->Manage Attribute Sets. Figure 6-9 Select the Attribute Set. In our case we have Default as our attribute set. Figure 6-10 Click on your attribute set and then drag your created attribute in your attribute set. Figure 6-11
11 We had created manufacturer attribute. Now we will drag this attribute in our attribute set. So that it becomes visible while creating any product in default attribute set. Figure 6-12 Save the Attribute set. Then go to Zeon Extensions->Manufacturer->Manage Manufacturer. 6.3 Manufacturer Manager Manage Manufacturer Navigate to Zeon Extensions->Manufacturer->Manage Manufacturer Shows ID, Manufacturer Title, Updated Time, Status and a link to Edit the Manufacturer Change Status or delete by selecting from the grid and selecting the action Figure 6-13
12 6.3.1 Add Manufacturer Figure 6-14 Manufacturer: Shows the list of all the manufacturers. (These are the option values that you entered while creating manufacturer attribute). Select the manufacturer that you want to create from the dropdown. Identifier: It is the unique value for a manufacturer. Status: Select Enabled if you want to enable that manufacturer and select disabled if you do not want that manufacturer to appear on frontend. Display on Frontend: Select Enabled if you want that manufacturer to appear on Home Page and select disabled if you do want that manufacturer to appear on Home Page. Manufacturer Logo: Upload the logo for that manufacturer. Manufacturer Banner: Upload the banner for that manufacturer (It is optional). Description: Description about that Manufacturer.
13 6.4 Assigning Products to Manufacturer Navigate to Catalog->Manage Products Figure 6-15 Edit the Product or create new Product. In the Manufacturer option select the manufacturer in which you want your product to be assigned. Figure 6-16 Do this for all the products and assign the products to the respective manufacturer.
14 6.5 Frontend Configuration As soon as you install the extension, you will see Shop by Manufacturer block in your content area Placing Shop by Manufacturer where required. If you want to change the position of that block then go to /app/design/frontend/base/default/layout/zeon/manufacturer.xml In manufacturer.xml, you will find following lines of code <cms_index_index> <reference name="content"> <block type="zeon_manufacturer/home" name="home_manufacturers_list"> <action method="settemplate" ifconfig="zeon_manufacturer/general/is_enabled"> <template>zeon/manufacturer/home.phtml</template> </action> </block> </reference> </cms_index_index> Remove this code from manufacturer.xml To display Shop by manufacturer block on your home page at any other place, you can add following lines of code in your CMS Home Page Content Section. Add this code in whichever div you want your block to be displayed. {{block type="zeon_manufacturer/home" attribute_code="manufacturer" random="1" limit= 4 template="zeon/manufacturer/home.phtml}} OR If you want to call it through layout xml,you can add following lines of code in your CMS Home Page Design Section. <reference name="content"> <block type="zeon_manufacturer/home" name="home_manufacturers_list" template="zeon/manufacturer/home.phtml" /> </reference> Following code will place the Shop by manufacturer block in content area. If you want it to place it in left side or right side of the page then replace the word content with left or right respectively.
15 Figure 6-17 This is how Shop by Manufacturer block will appear on your home page. To go to Manufacturer listing page, click on View All button. Figure 6-18
16 Click on any brand to navigate to its detail page. Figure 6-19
17 7. Technical Information The Shop by Manufacturer module has the following components Controllers: The Shop by Manufacturer Module doesn t override any core controller functionality. Models: The Model contains files to build up collection manufacturers. Backend: This module has layout file located in the path: app\design\adminhtml\default\default\layout\zeon\manufacturer.xml Frontend: This module has some template files located in the path: app\design\frontend\default\default\template\zeon\manufacturer And Layout file is located in the path: app\design\frontend\default\default\layout\zeon\manufacturer.xml Database Tables: The Job Manager Module will insert two tables in your data base namely zeon_manufacturer and zeon_manufacturer_store. 8. Un-installation Below are the steps to un-install the application Remove design files from below folders o \app\design\frontend\default\default\template\zeon\ : \app\design\frontend\default\default\layout\zeon\ : remove the layout file job manager o \ app\design\adminhtml\default\default\layout\zeon Remove Module Activation file o Remove Zeon_Manufacturer.xml from \app\etc\modules\ folder Remove Module from Code o Remove files form app\code\local\zeon\ of Manufacturer Remove Locale file Remove \app\locale\en_us\ Zeon_Manufacturer.csv Remove Database tables [Run below queries in database] o DROP TABLE ` <prefix>zeon_manufacturer_store` o DROP TABLE ` <prefix>zeon_manufacturer` o DELETE FROM ` `<prefix>core_resource` WHEREcore_resource.code = 'zeon_manufacturer_setup' o DELETE FROM ``<prefix>core_config_data` WHERE `<prefix>core_config_data.path LIKE '%`<prefix>zeon_manufacturer%
18 9. Unsupported Features & Known Issues 10. Troubleshooting
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
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
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
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
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...
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
www.store.belvg.com skype ID: store.belvg email: [email protected] 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
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
PaybyFinance Magento Plugin
PaybyFinance Magento Plugin Installation Instructions and User Guide Hitachi Capital Contact Name Contact Number E-Mail Address [email protected] PaybyFinance Team
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
Magento-Twinfield Module
Magento-Twinfield Module V 1.2 (beta) Installation Manual V 1.2.1, November 23, 2011 Contact information Tauros Media Nederland B.V. E: [email protected] 1 1. Index 1) Index.2 2) Introduction..3
Iceberg Commerce Video Gallery Extension 2.0 For Magento Version 1.3, 1.4, 1.5, 1,6
Iceberg Commerce Video Gallery Extension 2.0 For Magento Version 1.3, 1.4, 1.5, 1,6 User Manual August 2011 Introduction Images are boring, let your customers watch your products in use. Embed Youtube,
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
Create e-commerce website Opencart. Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : rtharoth@yahoo.
Create e-commerce website Opencart Prepared by : Reth Chantharoth Facebook : https://www.facebook.com/tharothchan.ubee E-mail : [email protected] Create e-commerce website Opencart What is opencart? Opencart
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
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
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
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
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
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
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
SugarCRM CE (Community Edition Only) Plugin. Installation. Guide
SugarCRM CE (Community Edition Only) Plugin Installation Guide Version 2.0 By Lim Tee Chert 23 June 2012 (last updated on: 08 January 2015) Purpose: This is for SugarCRM CE (Community Edition Only) plugin
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
Responsive Banner Slider Extension By Capacity Web Solutions
CONTENT Introduction 2 Features 2 Installation 3 Configuration Settings 4 Manage Responsive Banner Slider Extension 5 Manage Group Section 5 Manage Slides Section 9 Display Responsive Banner Slider 11
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
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.**
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
www.store.belvg.com skype ID: store.belvg email: [email protected] US phone number: +1-424-253-0801
www.store.belvg.com skype ID: store.belvg email: [email protected] 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
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:
DEAR Inventory - Magento Integration Guide
DEAR Inventory - Magento Integration Guide Introduction... 2 Magento configuration... 2 DEAR Inventory configuration... 4 DEAR Inventory extension for Magento... 6 Publishing Catalog... 6 Monitoring your
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
1 Classified Script. User Guide v1.0
1 Classified Script User Guide v1.0 Installation... 3 Create Database... 3 Grant Rights... 4 Configure Settings... 5 Step 1... 5 Step 2... 6 Step 3... 7 Post Sponsored Ad... 8 Step 1... 8 Step 2... 9 Manage
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
Hitachi PaybyFinance Magento Plugin
Hitachi PaybyFinance Magento Plugin Installation Instructions v1.0 H e a l t h y W e b s i t e s 2 0 1 5 0 1 4 1 2 4 9 0 6 4 1 a l i s t a i r @ h e a l t h y w e b s i t e s. c o. u k w w w. h e a l t
Order Manager Toolkit
Order Manager Toolkit Magento Extension User Guide Official extension page: Order Manager Toolkit Page 1 Table of contents: 1. Order Manager Toolkit: functionality on the order grid.. 3 2. Extended grid:
Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: [email protected] P: +1-(248)-275-1202
Stripe Payment Module Magento 2 USER MANUAL MAGEDELIGHT.COM SUPPORT E: [email protected] P: +1-(248)-275-1202 License Key After successful installation of Stripe Payment extension by using the Magento
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.
shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0)
shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0) Contents Installation Procedure... 4 What is in the zip file?... 4 Installing from Extension Manager... 6 Updating
3dCart Shopping Cart Software V3.X Affiliate Program Guide
INTRODUCTION 2 SETUP THE AFFILIATE MENU LINK 2 UPLOAD BANNERS 4 ENABLE THE AFFILIATE PROGRAM 6 REGISTRATION PROCESS 7 APPROVE AFFILIATES 11 MANAGE ORDERS 12 MANAGE COMMISSION PAYOUTS 13 END YOU VE REACHED
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,
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
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
InstantSearch+ for Magento Extension
InstantSearch+ for Magento Extension Troubleshooting Guide- version 2.1.1 1. Sync status on the InstantSearch+ Dashboard Go to http://magento.instantsearchplus.com/login Login using the username/password
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...
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
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
Bizrate Buyers Survey Magento Module Installation and Configuration
Bizrate Buyers Survey Magento Module Installation and Configuration Version 0.3 December 11, 2012 Contents Overview 3 Installation Instructions 3 Configuration Options 9 Medal Placements on Default Magento
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
easy_review version BoostMyShop
easy_review version BoostMyShop June 16, 2016 Contents easy_review 1 1. Overview 1 Automatic reminder 1 Super easy review write 1 2. Installation 1 1. Upload 1 3. Configuration 2 Version 2 General 3 Product
LICENTIA. InvoiceXpress Integration
LICENTIA InvoiceXpress Integration Revision: February 21, 2015 INDEX About the extension... 3 Compatability... 3 How to install... 3 After Installation... 3 Introduction... 4 Configuration... 5 Emailing
Installation, Configuration, and Usage
Installation, Configuration, and Usage Copyright Free Lunch Labs www.freelunchlabs.com Installation BEFORE INSTALLING THIS EXTENSION CREATE OF BACKUP OF YOUR MAGENTO INSTALLATION AND ALL ASSOCISTED FILES
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
ULTIMATE LOYALTY MODULE
ULTIMATE LOYALTY MODULE MAGENTO, V1.0 (BETA) INSTALLATION & USER MANUAL V1.0, 06 FEBRUARY 2012 TAUROS MEDIA NEDERLAND B.V. POSTBUS 75035, 1077 AA AMSTERDAM [email protected] MANUAL ULTIMATE LOYALTY
Marketplace Plug-in User Guide
Marketplace Plug-in User Guide A guide to using Marketplace plug-in interface Last Updated: September 30, 2014 Version 1.0 2013-2004 Cybage. All rights reserved. The information contained in this document
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
Joomla/Mambo Community Builder
Joomla/Mambo Community Builder Version 1.1 Installation Guide document version 1.1 03.Aug.2007 Copyright No portions of this manual may be reproduced or redistributed without the written consent of the
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
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
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...
Manual for merchants and developers
Manual for merchants and developers ICEPAY OpenCart Online Payment Module v 2.0.8 ICEPAY B.V. 2016-05-04 1. General Information 3 1.1 Summary (links to modules, benefits) 3 1.2 Prerequisites 4 1.3 Compatibility
INSTALLATION GUIDE 1.0.0 MC
MC Extension Auto Review Reminder Emailer Irzoo Thank you for purchasing the Auto Review Reminder Emailer extension. Below are the installation instructions, please let us know if you have any questions
CMS and e-commerce Solutions. version 1.0. Please, visit us at: http://www.itoris.com or contact directly by email: sales@itoris.
Help Desk for Magento User Guide version 1.0 created by IToris IToris Table of contents 1. Introduction... 3 1.1. Purpose... 3 2. Installation and License... 3 2.1. System Requirements... 3 2.2. Installation...
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,
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
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
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
Open Source Content Management System JOOMLA
Open Source Content Management System JOOMLA Swapnil S. Chafale MCA Department, GHRIIT Nagpur, (M.S.),India [email protected] Dr.V.M. Thakare S.G.B. Amravati University, Amravati (M.S.),India [email protected]
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
ACTIVE DIRECTORY DEPLOYMENT
ACTIVE DIRECTORY DEPLOYMENT CASAS Technical Support 800.255.1036 2009 Comprehensive Adult Student Assessment Systems. All rights reserved. Version 031809 CONTENTS 1. INTRODUCTION... 1 1.1 LAN PREREQUISITES...
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: [email protected] Maputo. Mozambique 1 Paguei.Online is the first Mozambican
MAGENTO-TWINFIELD MODULE
MAGENTO-TWINFIELD MODULE MAGENTO V1.0.5 (BETA) INSTALLATION & USER MANUAL V1.0.5 JANUARY 10, 2013 TAUROS MEDIA NEDERLAND B.V. POSTBUS 75035, 1077 AA AMSTERDAM [email protected] USER MANUAL MAGENTO-TWINFIELD
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
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
APP ANALYTICS PLUGIN
[email protected] 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
[Jet-Magento Integration]
CedCommerce. All rights reserved. [email protected] [Jet-Magento Integration] CedCommerce Jet-Magento Integration, an extension by CedCommerce, establishes synchronization of inventory, price, other
ASULPUNTO Magento unicenta opos integration extension Version 1.0.0
ASULPUNTO Magento unicenta opos integration extension Version 1.0.0 Magento unicenta opos Integration Extension Version 1.0.0 Page 1 Table of Contents Requirements...3 A working copy of unicenta opos on
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.
USER GUIDE - May 2010
USER GUIDE - May 2010 Login...2 Browse.................................................................. 3 By Product Type By Manufacturer Search....4 By Keyword Via Quick Find Via Quick Order Search Results
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
Welcome to the Magento User's Guide Last modified by diglin on Fri, February 27, 2009 08:09 Source Old Revisions. Chapter 1: Introducing Magento
Magento User Guide Welcome to the Magento User's Guide Last modified by diglin on Fri, February 27, 2009 08:09 Source Old Revisions Chapter 1: Introducing Magento Chapter 1: Introducing Magento What is
Flexible Virtuemart 2 Template CleanMart (for VM2.0.x only) TUTORIAL. INSTALLATION CleanMart VM 2 Template (in 3 steps):
// Flexible Virtuemart VM2 Template CleanMart FOR VIRTUEMART 2.0.x (ONLY) // version 1.0 // author Flexible Web Design Team // copyright (C) 2011- flexiblewebdesign.com // license GNU/GPLv3 http://www.gnu.org/licenses/gpl-
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...
Welcome to Collage (Draft v0.1)
Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...
Magento Extension Point of Sales User Manual Version 1.0
Magento Extension Point of Sales Version 1.0 1. Overview... 2 2. Integration... 2 3. General Settings... 3 3.1 Point of sales Settings... 3 3.2 Magento Client Computer Settings... 3 4. POS settings...
User Manual Web DataLink for Sage Line 50. Version 1.0.1
User Manual Web DataLink for Sage Line 50 Version 1.0.1 Table of Contents About this manual...3 Customer support...3 Purpose of the software...3 Installation...6 Settings and Configuration...7 Sage Details...7
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
OSF INTEGRATOR for INGRAM MICRO Integration Guide
OSF INTEGRATOR for INGRAM MICRO Integration Guide Table of Contents 1 Installation... 3 1.1 Disabling Extension... 4 1.2 Uninstalling Extension... 4 2 Configuration... 5 3 Usage... 6 3.1 Automated product
OpenCart AliExpress Affiliate Plugin User Guide
OpenCart AliExpress Affiliate Plugin User Guide By TC 30 April 2015 (last updated on: 15 Oct 2015) http://www.aliwebstore.com Purpose: The purpose of this Opencart AliExpress Affiliate Plugin is to provide
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
QAS Address Verification Module for Magento
QAS Address Verification Module for Magento Contents 1 Introduction... 4 2 Overview... 4 3 Requirements... 4 4 QAS Touch-points... 4 4.1 Address Book... 4 4.2 Checkout... 5 5 Installation... 7 5.1 Implementation
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
PORTAL ADMINISTRATION
1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5
User Guide. From Getting Started... To Getting More From Your Store. Magento Community Revised, Expanded, and Updated for Magento Community v1.
User Guide From Getting Started... To Getting More From Your Store Magento Community Revised, Expanded, and Updated for Magento Community v1.7 Important Notice Magento reserves the right to make corrections,
OpenCart. SugarCRM CE (Community Edition Only) Integration. Guide
OpenCart SugarCRM CE (Community Edition Only) Integration Guide By Lim Tee Chert 23 June 2012 (last updated on: 08 January 2015) http://www.cartbooks.com Purpose: This is A Release for OpenCart SugarCRM
