Thanks for buying the Advanced Color Swatches Extension for Magento. 1. Drop the app-js-skin folders in your magento installation folder.

Size: px
Start display at page:

Download "Thanks for buying the Advanced Color Swatches Extension for Magento. 1. Drop the app-js-skin folders in your magento installation folder."

Transcription

1 Thanks for buying the Advanced Color Swatches Extension for Magento. Installation Steps: PLEASE READ ALL THE INSTRUCTIONS CAREFULLY 1. Drop the app-js-skin folders in your magento installation folder. 2. In the Magento Admin Panel, - clear or disable the Magento cache ( System > Cache Management ). You can enable and refresh the Magento cache once the installation and configuration is done. - disable or re-run the Magento compilation option in case you want to keep it enabled ( System > Tools > Compilation ). - logout and login again to see the new "Attribute Swatches"->"Manage Items" menu on the top navigation. 3. Select the attributes to be displayed as swatches in the configuration section of the backend ( System > Configuration > Catalog > Attribute Swatches ). Read carefully all the options descriptions. 4. Go to "Attribute Swatches"->"Manage Items", you will see there the list of attributes options you should have already created in the manage attributes section, here you can upload swatches or select hexadecimal colors. 5. To display the color swatches in the product listing, A: If you haven't customized your theme yet and you are using the default theme, rwd theme or porto theme, you can use one of these files: YOUR_THEME_CHANGES/catalog/product/list_for_default_theme.phtml YOUR_THEME_CHANGES/catalog/product/list_for_porto_theme.phtml YOUR_THEME_CHANGES/catalog/product/list_for_rwd_theme.phtml rename the corresponding file to list.phtml and upload it to app/design/package/theme/template/catalog/product/ ( DO NOT FORGET TO BACKUP YOUR ORIGINAL list.phtml FIRST!!!!! )

2 B: For custom templates check the commented lines in YOUR_THEME_CHANGES/catalog/product/list_for_default_theme.phtml, the following lines need to be added or modified: - before foreach ($_productcollection as $_product): copy this: /* COLORS AND ATTRIBUTES SWATCHES HELPER */ $_swatches_helper = $this->helper("attributeswatches/product_list")- >setdimensions(135, 135); /* make sure you set the correct image thumbnail dimensions */ - After foreach ($_productcollection as $_product): /* MANGOEXTENSIONS */ /* -SWATCHES HTML OUTPUT */ $_swatches = $_swatches_helper->setproduct($_product)- >processswatches(); /* EOF -SWATCHES HTML OUTPUT */ - TO CHANGE THE SOURCE OF THE PRODUCT IMAGE TO CHANGE ACCORDING TO THE LAYERED NAVIGATION SELECTED COLOR AND TO INCLUDE THE ALTERNATE IMAGE ON HOVER EFFECT: <a href=" echo $_swatches["product_url"] " title=" echo $this- >striptags($this->getimagelabel($_product, 'small_image'), null, true) " class="productimage"> <!-- NOTICE: the image src attribute changes and a new class is added to the img element : catalog-product-image --> <img src=" echo $_swatches["product_image"] " width="135" height="135" alt=" echo $this->striptags($this->getimagelabel($_product, 'small_image'), null, true) " class="catalog-product-image"/> <!-- NOTICE: code for the alternate image to display on hover, some themes already include a similar feature so be careful --> if(isset($_swatches['hover_image']) && $_swatches['hover_image']!=""): <img src=" echo $_swatches['hover_image'];" width=" echo $_image_width; " height=" echo $_image_height; " class="catalog-hoverimage"/> endif; </a>

3 - Use this code inside the list item to display the swatches, place it depeding on your template design. <!-- SWATCHES HTML OUTPUT --> /* INCLUDE AVAILABILITY IF ENABLED IN BACKEND OPTIONS */ echo $_swatches_helper->showavailability(); /* SWATCHES CODE */ echo $_swatches["swatches"]; 6. To display the color swatches in the product details page, look for the options in the settings section: System > Configuration > Catalog > Attribute Swatches 7. After that, do not forget to refresh your Magento cache. ################################################# ##### NOTICE FOR PORTO THEME USERS: The PORTO THEME template folder comes with its own version of the attributeswatches plugin, however, they are outdated now because many changes have been introduced lately, you should rather rename or remove these folders skin/frontend/smartwave/porto/attributeswatches app/design/frontend/smartwave/porto/template/attributeswatches And then the ones in the base folder are in use: skin/frontend/base/default/attributeswatches app/design/frontend/base/default/template/attributeswatches If you need to customize any of the files inside those folders, we recommend to rather copy the files to the folder: skin/frontend/smartwave/porto/attributeswatches app/design/frontend/smartwave/porto/template/attributeswatches ################################################# ##### 8. Alternate images on hover for the products list: You can use the existing image attributes: image, thumbnail or small_image. In case you want to use a new attribute:

4 - Go to Catalog > Attributes > Manage Attributes - Create an attribute of type "image", call it, for example, 'hover', then save it. - Then, go to Catalog > Attributes > Manage Attribute Sets, edit an existing attribute set, and add the newly created image attribute ( for example 'hover' ) to the "images" section, then save it. - If you edit a product of the modified attribute set, you should be able to see a new column on the "images" tab. - Go to System > Configuration > Catalog > Attributes Swatches > Alternate image on hover: enter the attribute code ( in this case 'hover', do not enter the label ) in the field, then save. 9. Importing product images: In case you need to import images for configurable products using a custom script for batch processing, there is not yet a method that will transform string values to color id's for the "Associated Attributes" column, but you could add a new column "associated_attributes" to the gallery item in your import script and insert values of the type: attribute[attribute_id]-[attribute_value_id], for example attribute92-20, where 92 is the id of the "color" attribute, and 20 is the attribute_value_id of 'Black', and that can be processed by the import script and inserted in the product gallery table. Otherwise, you can import those values directly to the table catalog_product_entity_media_gallery_value : column associated_attributes 10. On custom pages, cms pages or third party extensions with products lists or grids, the attribute swatches might not work as not all the css/js files are included, you need to add the layout handle: <update handle="attributeswatches_product_list" /> 11. On quickview plugins, cms pages or third party extensions that display one single product with options and the images gallery, the attribute swatches might not work as not all the css/js files are included, you need to add the layout handle: <update handle="attributeswatches_product_view" /> 12. To use a child product image in mini-cart blocks ( Option : Catalog > Attribute Swatches > Checkout > Override images in cart ): this option works on the cart page and on the mini-cart blocks, if that doesn't work on the cart mini-blocks, it can be either a conflict with another extension ( there are magento extension conflict tools available in MagentoConnect ) or the theme using a default or custom renderer for the configurable cart items instead of the configurable product renderer for configurable products. 13. For updating additional elements in the page using the switch-attribute feature:

5 First: change the id of the element in the table to "swatches-update-attribute-product_code-extra", with the -extra at the end. Then use this code to update the values: jquery(document).on("afterswitchattributes", function(e, values){ if( values && typeof(values["product_code"].value)!== "undefined"){ jquery("#swatches-update-attribute-product_codeextra").text(values["product_code"].value); } }); 14. TROUBLESHOOTING: If the extension does not seem to work correctly after installation, please check the following: # That Mage_configurableswatches extension is disabled in app/etc/modules/mage_configurableswatches.xml # Make sure your attributes have options in Catalog > Attributes > Manage Attributes, if the attributes you are planning to display as swatches ( color, size, texture, etc ) don't have options, nothing will work. # That the products you are planning to use to show swatches are configurable. # Go to System > Configuration > Catalog > Attributeswatches : select the attributes that will be displayed as swatches ( usually color, texture but they might have another name in your catalog configuration ) on the product view and products lists, also select the attributes that will be displayed as labels on the product details page ( usually size ) # Go to Attributes Swatches > Manage Items, see if the color options are there and make sure you fill some color codes or upload some swatches images. 15. If any doubt or comment, please do not hesitate to contact us. For faster resolution of issues, send an accurate description of the problem, screenshots, links to pages and steps to reproduce errors.

Flexslider v1.x Installation and User Manual

Flexslider v1.x Installation and User Manual 2017/11/08 09:14 1/15 Flexslider v1.x Installation and User Manual Flexslider v1.x Installation and User Manual Latest version: 1.10.0 Compatibility: Magento 1.7.x, 1.8.x, 1.9.x Disclaimer This is the

More information

Ajax Quick View Pro Extension

Ajax Quick View Pro Extension Ajax Quick View Pro Extension User Manual https://www.magebees.com/magento-ajax-quick-view-pro-extension.html Ajax Quick View Pro Extension By CONTENT Introduction 3 Features 3 Configuration Settings 4

More information

Version USER GUIDE

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

More information

FCPM Copyright Best4Mage V4.1.0

FCPM Copyright Best4Mage V4.1.0 Installation through FTP Please make sure you ve downloaded extension package compliant with your Magento version. The compliance information is stated in the package filename. Once you ve downloaded and

More information

Shipping Availability Magento Extension by PIXLOGIX USER GUIDE Copyright 2017 Pixlogix.com All rights reserved

Shipping Availability Magento Extension by PIXLOGIX USER GUIDE Copyright 2017 Pixlogix.com All rights reserved support@pixlogix.com Shipping Availability Magento Extension by PIXLOGIX USER GUIDE All rights reserved Table of Contents 1. Installation Process... 3 2. Shipping Availability Configuration... 4 2.1 General...

More information

Bestseller Products Extension

Bestseller Products Extension Bestseller Products Extension User Guide https://www.magebees.com/magento-bestseller-products-extension.html Bestseller Products Extension By Support Ticket: - http://support.magebees.com, Support Email

More information

Manual Getting Started. How to install extension

Manual Getting Started. How to install extension Manual Getting Started Welcome to the Banner Management System documentation. Whether you are new or an advanced user, you can find useful information here. Next steps: How to install extension Configure

More information

Navigation Menu Pro Extension

Navigation Menu Pro Extension Navigation Menu Pro Extension User Guide https://www.magebees.com/magento-navigation-menu-proresponsive-mega-menu-accordion-menu-smart-expand-menu.html Navigation Menu Pro Extension By Support Ticket:

More information

Manual FCPM for Magento 2 Version 1.2.1

Manual FCPM for Magento 2 Version 1.2.1 INSTALLATION OF THE EXTENSION Please make sure you ve downloaded extension package compliant with your Magento version. The compliance information is stated in the package filename. Once you ve downloaded

More information

Iceberg Commerce Video Gallery Extension 2.1 For Magento Version 1.3, 1.4, 1.5, 1,6, 1.7

Iceberg Commerce Video Gallery Extension 2.1 For Magento Version 1.3, 1.4, 1.5, 1,6, 1.7 Iceberg Commerce Video Gallery Extension 2.1 For Magento Version 1.3, 1.4, 1.5, 1,6, 1.7 User Manual January 2013 Introduction Images are boring, let your customers watch your products in use. Embed Youtube,

More information

Featured Products Extension

Featured Products Extension Featured Products Extension User Manual http://www.magebees.com/magento-featured-products-extension.html Featured Products Extension By CONTENT Introduction 3 Features 3 Installation 4 Configuration Settings

More information

Altima Lookbook Professional Magento ecommerce Extension Version 1.6.9

Altima Lookbook Professional Magento ecommerce Extension Version 1.6.9 Altima Lookbook Professional Magento ecommerce Extension Version 1.6.9 Compatibility: Community Edition: 1.4.x.x, 1.5.x.x, 1.6.x.x, 1.7.x.x, 1.8.x.x, 1.9.x.x Enterprise Edition: 1.9 and later Release date:

More information

Navigation menu - MegaMenu. User Guide 1. &

Navigation menu - MegaMenu. User Guide 1.  & User Guide User Guide 1 Extension Description Menu - is a key navigation element for customers on your website. It is particularly important that the menu would contain a maximum of all information, namely

More information

USER MANUAL TABLE OF CONTENTS. Admin Actions Audit Log. Version: 0.1.1

USER MANUAL TABLE OF CONTENTS. Admin Actions Audit Log. Version: 0.1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Admin Actions Audit Log... 1 Installation... 2 Installation Steps... 2 Installation (Custom Theme)... 3 Extension Activation... 3 Configuration...

More information

PHOTO GALLERY. USER GUIDE by Decima Digital. d e c i m a d i g i t a l. c o m

PHOTO GALLERY. USER GUIDE by Decima Digital. d e c i m a d i g i t a l. c o m PHOTO GALLERY USER GUIDE by Decima Digital d e c i m a d i g i t a l. c o m Content Thank you for purchasing our extension. If you have any questions which are out of the scope of this document, do not

More information

Flexslider v2.x Installation and User Manual

Flexslider v2.x Installation and User Manual 2018/05/16 02:56 1/18 Latest version: 2.2.6 Compatibility: Magento 2.1.x, 2.2.x Disclaimer This is the installation and user manual for the Magento Flexslider v1.x extension created by Solide Webservices.

More information

Product Recommendation based on Order History. Table of Contents

Product Recommendation based on Order History. Table of Contents Product Recommendation based on Order History Table of Contents 1. Description 2. Features 3. Installation 4. Configuration 5. Troubleshooting Description Version 1.0.0 The present day ecommerce customers

More information

Brainvire Easyconfigurable

Brainvire Easyconfigurable Brainvire Easyconfigurable V. 1.0.2 1 Table of Contents OVERVIEW..03 EXTENSION FEATURES.04 HOW TO INSTALL..05 DISPLAY IN ADMIN....09 UNINSTALL..17 HELP / SUPPORT..18 2 OVERVIEW With the help of Brainvire

More information

USER MANUAL. MageMob App Builder TABLE OF CONTENTS. Version: 2.0.0

USER MANUAL. MageMob App Builder TABLE OF CONTENTS. Version: 2.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of MageMob App Builder... 1 Installation & Activation... 2 Installation Steps... 2 Extension Activation... 3 How it Works?... 4 Back End Configuration:...

More information

USER MANUAL TABLE OF CONTENTS. Easy Site Maintenance. Version: 1.0.4

USER MANUAL TABLE OF CONTENTS. Easy Site Maintenance. Version: 1.0.4 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Easy Site Maintenance... 1 Installation... 2 Installation Steps... 2 Installation (Custom Theme)... 3 Configuration... 4 Contact Us... 8 Easy

More information

Custom Options Swatch. User manual

Custom Options Swatch. User manual Custom Options Swatch 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 current

More information

USER MANUAL ADVANCE SHOP BY BRAND TABLE OF CONTENTS. Version: 1.0.4

USER MANUAL ADVANCE SHOP BY BRAND TABLE OF CONTENTS. Version: 1.0.4 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Advance Shop by Brand... 1 Installation & Activation... 2 Installation Steps... 2 Installation (Custom theme)... 3 Extension Activation... 3

More information

skype ID: store.belvg US phone number:

skype ID: store.belvg   US phone number: 1 Table of Contents Table of Contents: 1. Introduction to Products Sorting... 3 2. How to Install... 4 3. How to Configure... 5 3.1. How to create sorting attributes... 5 3.2. How to manage sorting attributes...

More information

enhanced_product_availability

enhanced_product_availability enhanced_product_availability version BoostMyShop February 08, 2018 Contents enhanced_product_availability 1 1. Introduction 1 2. Installation 2 3. Configuration 2 1. Version - Information 2 2. Stock

More information

ultimo theme User Guide Extremely customizable Magento theme by Infortis Copyright Infortis All rights reserved

ultimo theme User Guide Extremely customizable Magento theme by Infortis Copyright Infortis All rights reserved ultimo theme Extremely customizable Magento theme by Infortis User Guide Copyright 2012-2014 Infortis All rights reserved How to use this document Please read this user guide carefully, it will help you

More information

Documentation Module: Magento products integration for WordPress Version: 1.0.0

Documentation Module: Magento products integration for WordPress Version: 1.0.0 Documentation Module: Magento products integration for WordPress Version: 1.0.0 Table of Contents Documentation... 1 Magento... 1 Installation... 1 Configuration... 1 WordPress... 3 Installation... 3 Configuration...

More information

Extension User Guide Order By SKU Brainvire Infotech Pvt. Ltd

Extension User Guide Order By SKU Brainvire Infotech Pvt. Ltd Order By SKU V. 1.1.0 1 Table of Contents OVERVIEW..03 EXTENSION FEATURES.04 HOW TO INSTALL..05 DISPLAY IN FRONT..09 UNINSTALL..13 HELP / SUPPORT..14 2 OVERVIEW One of the best ways to order the products

More information

store.belvg US: UK:

store.belvg US: UK: 1 2 Table of Contents 1. Introduction to Quick Top Links 2. How to Install 3. How to Configure 4. How to Use 1. Introduction to Quick Top Links Magento Quick Top Links extension allows accessing store

More information

USER MANUAL TABLE OF CONTENTS. Gift Promotions OnCart Total. Version: 0.1.2

USER MANUAL TABLE OF CONTENTS. Gift Promotions OnCart Total. Version: 0.1.2 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Gift Promotions OnCart Total... 1 Installation... 2 Installation Steps... 2 Installation (Custom Theme)... 3 Extension Activation... 4 Configuration...

More information

Dynamic Product Options extension for Magento2. User Guide

Dynamic Product Options extension for Magento2. User Guide Dynamic Product Options extension for Magento2 User Guide version 2.0 Website: http://www.itoris.com Page 1 Contents 1. Introduction... 4 2. Installation... 5 2.1. System Requirements... 5 2.2. Installation...

More information

Optimizes the navigation and lets visitors search by categories, price ranges, color, and other product attributes.

Optimizes the navigation and lets visitors search by categories, price ranges, color, and other product attributes. Documentation / Documentation Home Layered Navigation Created by Unknown User (bondarev), last modified by Malynow, Alexey on Feb 22, 2016 Installation Set up cron Configuration Basic Configuration Filters

More information

Responsive Banner Slider Extension

Responsive Banner Slider Extension Responsive Banner Slider Extension User Manual https://www.magebees.com/magento-responsive-banner-slider-with-lazyload-extension.html Responsive Banner Slider Extension By CONTENT Introduction 3 Features

More information

HIDE PRODUCT PRICE. User Guide. User Guide Page 1

HIDE PRODUCT PRICE. User Guide. User Guide Page 1 HIDE PRODUCT PRICE 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 at any

More information

Share Me! User Guide

Share Me! User Guide Share Me! User Guide Version: 2.1 Website: http://www.magpleasure.com Support: support@magpleasure.com Table of Contents Share Me! Description... 3 Configure Share Me!... 4 Customer Notifications Management...

More information

SAHARA BIKE1 RESPONSIVE MAGENTO THEME

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

More information

Extension User Guide Customer Attributes Brainvire Infotech Pvt. Ltd

Extension User Guide Customer Attributes Brainvire Infotech Pvt. Ltd Customer Attributes V. 1.0.3 1 Table of Contents OVERVIEW.. 03 EXTENSION FEATURES. 04 HOW TO INSTALL.. 05 CONFIGURATION 09 DISPLAY IN FRONT. 23 UNINSTALL 26 HELP / SUPPORT 27 2 OVERVIEW Magento Customer

More information

Ajax Add To Cart Pro Extension

Ajax Add To Cart Pro Extension Ajax Add To Cart Pro Extension User Guide https://www.magebees.com/magento-ajax-add-to-cart-extension.html Ajax Add To Cart Pro Extension By CONTENT Introduction 3 Features 3 Configuration Settings 4 Ajax

More information

BLOG Magento Extension by PIXLOGIX USER GUIDE Copyright Pixlogix.com All rights reserved

BLOG Magento Extension by PIXLOGIX USER GUIDE Copyright Pixlogix.com All rights reserved support@pixlogix.com BLOG Magento Extension by PIXLOGIX USER GUIDE All rights reserved Table of Contents 1. Installation Process... 3 2. Blog Configuration... 4 2.1 General... 4 2.2 Post List... 5 2.3

More information

Joomla How To Setup Menu Item Type Module Add New

Joomla How To Setup Menu Item Type Module Add New Joomla How To Setup Menu Item Type Module Add New A menu is an object which contains one or more menu items. Each menu item will have a specific menu item type. Create one or When you create the modules,

More information

Customer Testimonial Pro Extension

Customer Testimonial Pro Extension Customer Testimonial Pro Extension User Manual https://www.magebees.com/magento-customer-testimonial-extension.html Customer Testimonial Pro Extension By CONTENT Introduction 3 Features 3 Manage Testimonial

More information

Newsletter Popup v3.x Configuration for Magento 2

Newsletter Popup v3.x Configuration for Magento 2 Newsletter Popup v3.x Configuration for Magento 2 From Plumrocket Documentation Contents 1. Configuring Newsletter Popup 3.x Extension for Magento 2 2. Managing Newsletter Popups 3. Managing Newsletter

More information

Wholesale Add To Cart Grid. User manual

Wholesale Add To Cart Grid. User manual Wholesale Add To Cart Grid User manual Table of contents 1. Overview 1.1 General information 1.2 Key features 1.3 About this manual 2. Installation 2.1 Installation requirements 2.2 Installation instructions

More information

USER GUIDE. LitExtension: YAHOO STORE to Magento Migration Tool

USER GUIDE. LitExtension: YAHOO STORE to Magento Migration Tool USER GUIDE LitExtension: YAHOO STORE to Magento Migration Tool The essence of LitExtension products focuses on their friendliness to users, which means that every shopping cart owners, even who has little

More information

Magento 1 Switch Order Owner. Quick Start Guide

Magento 1 Switch Order Owner. Quick Start Guide Magento 1 Switch Order Owner Quick Start Guide 1. Introduction Switch Order Owner extension allows admin to switch ownership of order from the backend. Admin can easily modify an existing order's customer

More information

Table of Contents. Introduction to Product View Gallery How to Install and Deactivate How to Configure How to Use...

Table of Contents. Introduction to Product View Gallery How to Install and Deactivate How to Configure How to Use... 1 Table of Contents Introduction to Product View Gallery... 3 How to Install and Deactivate... 4 How to Configure... 6 How to Use... 9 2 1. Introduction to Product View Gallery Magento Product View Gallery

More information

Dealer Inquiry Extension

Dealer Inquiry Extension Dealer Inquiry Extension User Manual http://www.magebees.com/magento-dealer-inquiry-extension.html Dealer Inquiry Extension By CONTENT Introduction 3 Features 3 Installation 4 Configuration Settings 7

More information

Table of Contents. Introduction to Product Slider How to Install and Deactivate How to Configure How to Use...

Table of Contents. Introduction to Product Slider How to Install and Deactivate How to Configure How to Use... Table of Contents Introduction to Product Slider... 3 How to Install and Deactivate... 4 How to Configure... 6 How to add a slider block to a page...12 How to Use... 16 2 1. Introduction to Product Slider

More information

Color Swatches Pro. Magento Extension User Guide. Official extension page: Color Swatches Pro. User Guide: Color Swatches Pro

Color Swatches Pro. Magento Extension User Guide. Official extension page: Color Swatches Pro. User Guide: Color Swatches Pro Color Swatches Pro Magento Extension User Guide Official extension page: Color Swatches Pro Page 1 Table of contents: 1. How to upload images for attributes... 3 2. General Settings....... 7 3. Price Settings.11

More information

Google Tag Manager. Google Tag Manager Custom Module for Magento

Google Tag Manager. Google Tag Manager Custom Module for Magento Google Tag Manager 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 from

More information

Private Sales & Flash Sales v4.x Configuration for Magento 2

Private Sales & Flash Sales v4.x Configuration for Magento 2 Private Sales & Flash Sales v4.x Configuration for Magento 2 From Plumrocket Documentation Contents 1. Configuring Private Sales and Flash Sales Extension 1.1. Configuring Private Sales Homepage 1.2. Configuring

More information

YMM Products Parts Finder

YMM Products Parts Finder YMM Products Parts Finder Extension User Manual for Magento 2 https://www.magebees.com/ymm-products-parts-finder-extension-formagento-2.html YMM Products Parts Finder By Support Ticket: - https://support.magebees.com,

More information

Fixed Header edream Market

Fixed Header edream Market User s Manual Magento Extension Fixed Header edream Market www.edreamag.com support@edreamag.com Fixed Header for Magento MODERN, SIMPLE AND PROFESSIONAL edream Fixed Header is a unique extension that

More information

Product Parts Finder - Magento 2 USER MANUAL MAGEDELIGHT.COM

Product Parts Finder - Magento 2 USER MANUAL MAGEDELIGHT.COM Product Parts Finder - Magento 2 USER MANUAL MAGEDELIGHT.COM License Key After successful installation of Product Parts Finder extension, you are now required to configure the license key in the admin

More information

Blog FAQ.

Blog FAQ. Blog FAQ Website: Support: http://ecommerce.aheadworks.com helpdesk@aheadworks.com Table of Contents Blog... 4 Can I use a WYSIWYG editor in Blog?... 4 Is it possible with the Blog extension to limit the

More information

Installation through FTP

Installation through FTP Installation through FTP Please make sure you ve downloaded extension package compliant with your Magento version. The compliance information is stated in the package filename. Once you ve downloaded and

More information

Featured Products Extension for Magento 2

Featured Products Extension for Magento 2 Featured Products Extension for Magento 2 User Manual https://www.magebees.com/featured-products-extension-formagento-2.html Featured Products Extension for Magento 2 By CONTENT Introduction 3 Features

More information

Magento Survey Extension User Guide

Magento Survey Extension User Guide Magento Survey Extension User Guide Page 1 Table of Contents To Access Plugin, Activate API Key... 3 Create Questions... 5 Manage Survey... 6 Assign Question to Survey... 7 Reveal Survey In Three Ways...

More information

CedCommerce. All rights reserved.

CedCommerce. All rights reserved. CedCommerce. All rights reserved. SUPPORT@CEDCOMMERCE.COM 1 Module Installation Guide Version 2.0 2 Installation Here we are explaining different steps to install the CedCommerce Modules or Extensions.

More information

SAHARA GIFT1 RESPONSIVE MAGENTO THEME

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

More information

SAHARA KIDS1 RESPONSIVE MAGENTO THEME

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

More information

Magento 1 Extension. ( Version ) STORE.DCKAP.COM

Magento 1 Extension. ( Version ) STORE.DCKAP.COM Magento 1 Extension ( Version 1.0.3 ) Table of Contents Introduction to Promotions Scheduler 3 Version & Compatibility Support 4 How to Install This Module? 4 Enable the Extension 5 Configuration 5 Configuring

More information

USER MANUAL LANGUAGE TRANSLATOR TABLE OF CONTENTS. Version: 1.1.6

USER MANUAL LANGUAGE TRANSLATOR TABLE OF CONTENTS. Version: 1.1.6 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Language Translator... 1 Installation... 2 Installation Steps... 2 Extension Activation... 3 Configuration... 4 FAQ... 16 General FAQs... 16

More information

Improved Layered Navigation

Improved Layered Navigation Improved Layered Navigation Magento Extension User Guide Official extension page: Improved Layered Navigation See advanced options here Page 1 General table of contents To see information about module

More information

ultimo theme User Guide For Magento 2 Copyright Infortis. All rights reserved.

ultimo theme User Guide For Magento 2 Copyright Infortis. All rights reserved. ultimo theme For Magento 2 User Guide Copyright 2012-2017 Infortis. All rights reserved. Document updated: December 23, 2017 How to use this document Please read this user guide carefully, it will help

More information

Color Swatch v5. User manual

Color Swatch v5. User manual Color Swatch v5 User manual Table of contents 1. Overview 1.1 General information 1.2 About this manual 2. Installation 2.1 Installation requirements 2.2 Installation instructions 3. Creating an Attribute

More information

Instagram Integration Widget User Guide

Instagram Integration Widget User Guide Instagram Integration Widget User Guide Welcome to Instagram Integration Widget for Magento User Guide. Thank you for choosing our product. This user guide describes the functionality of Instagram Widget

More information

USER MANUAL DELIVERY DATE SCHEDULER TABLE OF CONTENTS. Version: 0.1.8

USER MANUAL DELIVERY DATE SCHEDULER TABLE OF CONTENTS. Version: 0.1.8 USER MANUAL TABLE OF CONTENTS Introduction... 2 Benefits of Delivery Date Scheduler... 2 Installation & Activation... 3 Installation Steps... 3 Extension Activation... 4 How it Works?... 5 Back End Configuration...

More information

Ajax Quick Search Pro Extension

Ajax Quick Search Pro Extension Ajax Quick Search Pro Extension User Guide https://www.magebees.com/magento-ajax-quick-search-pro-extension.html Ajax Quick Search Pro Extension By CONTENT Introduction 3 Features 3 Configuration Settings

More information

User Manual RESPONSIVE SLIDESHOW. edream MARKET

User Manual RESPONSIVE SLIDESHOW. edream MARKET User Manual RESPONSIVE SLIDESHOW edream MARKET www.edreamag.com support@edreamag.com CONTENTS About extension... 3 Features Highlights... 4 Compatibility... 4 Extension Support and installation service...

More information

Subscriptions and Recurring Payments 2.X

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

More information

DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO

DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO MICROSOFT LABS JANUARY 10, 2019 DYNAMICS 365 BUSINESS PROCESS VISUALIZATION USING VISIO A Solution to create a Microsoft VISIO template by consuming the configured entity values from the CRM entity record.

More information

Ajax Infinite Scroll Pro Extension

Ajax Infinite Scroll Pro Extension Ajax Infinite Scroll Pro Extension User Manual https://www.magebees.com/magento-ajax-infinite-scroll-pro-extension.html Ajax Infinite Scroll Pro Extension By CONTENT Introduction 3 Features 3 Configuration

More information

Search AutoComplete & Suggest Pro Getting Started

Search AutoComplete & Suggest Pro Getting Started Search AutoComplete & Suggest Pro 1.2.1 Getting Started Welcome to the Search AutoComplete & Suggest Pro Documentation. Whether you are new or an advanced user, you can find useful information here. First

More information

Fooman Flexible Navigation Menu (Magento 1)

Fooman Flexible Navigation Menu (Magento 1) USER MANUAL Fooman Flexible Navigation Menu (Magento 1) User Manual Quick Links This User Manual is structured in the following sections: 1. Installation 2. Set up in Magento 3. Troubleshooting You can

More information

USER MANUAL TABLE OF CONTENTS. Quotation Manager. Version: Compatibility:

USER MANUAL TABLE OF CONTENTS. Quotation Manager. Version: Compatibility: USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Quotation Manager... 1 Installation& Activation... 2 Installation Steps... 2 Installation (Custom theme)... 3 Extension Activation... 3 How it

More information

Buyback inquiries listing page: Buyback requst page:

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

More information

New Products Extension for Magento 2

New Products Extension for Magento 2 New Products Extension for Magento 2 User Manual https://www.magebees.com/new-products-extension-for-magento-2.html New Products Extension for Magento 2 By CONTENT Introduction 3 Features 3 Configuration

More information

USER MANUAL. SEO Hub TABLE OF CONTENTS. Version: 0.1.1

USER MANUAL. SEO Hub TABLE OF CONTENTS. Version: 0.1.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of SEO Hub... 1 Installation& Activation... 2 Installation Steps... 2 Extension Activation... 4 How it Works?... 5 Back End Configuration... 5 Points

More information

Magento Theme Instruction. product.sain3.com

Magento Theme Instruction. product.sain3.com Magento Theme Instruction product.sain3.com We are extremely happy to present art-gallery Magento theme to you, it is designed and developed by highly qualified Designer & Developers in a way that make

More information

Module Admin Logger User Manual

Module Admin Logger User Manual Module Admin Logger Manual 1 / 9 Summary Summary Overview... 3 Installation... 3 Upload files... 3... 3 General... 3 How to use... 4 Admin logger : users... 5 Admin logger : customer... 5 Admin logger

More information

Checkout Success Page v2.x Configuration for Magento 2

Checkout Success Page v2.x Configuration for Magento 2 Checkout Success Page v2.x Configuration for Magento 2 From Plumrocket Documentation Contents 1. Configuring Checkout Success Page Extension 2. Testing Checkout Success Page for Magento 2 2.1. Preview

More information

Magento 1 Installation Guide. Sort by Date. Installation Guide 1

Magento 1 Installation Guide. Sort by Date. Installation Guide 1 Magento 1 Installation Guide Sort by Date Installation Guide 1 Introduction Thank you for choosing a Magmodules extension for your Magento store. This document will provide you with all the installation

More information

2013, Active Commerce 1

2013, Active Commerce 1 2013, Active Commerce 1 2013, Active Commerce 2 Active Commerce User Guide Terminology / Interface Login Adding Media to the Media Library Uploading an Item to the Media Library Editing the Media Meta

More information

magento_1:product-parts-finder

magento_1:product-parts-finder magento_1:product-parts-finder https://amasty.com/docs/doku.php?id=magento_1:product-parts-finder For more details see the Product Parts Finder extension page. Product Parts Finder Setting up Finder step

More information

Search Autocomplete Magento Extension

Search Autocomplete Magento Extension Search Autocomplete Magento Extension User Manual This is the user manual of Magento Search Autocomplete v1.6.5 and was last updated on 26-07-2017. To see what this extension can do, go to the Magento

More information

Components in Joomla. Instructor for this Workshop. Web Development. School of Arts and Sciences

Components in Joomla. Instructor for this Workshop. Web Development. School of Arts and Sciences Components in Joomla Instructor for this Workshop Web Development School of Arts and Sciences TABLE OF CONTENTS Welcome... 4 What is Joomla?... 4 What is a Component?... 4 Joomla Weblinks... 5 Sample Use

More information

Product Slider for Magento 2. User Guide

Product Slider for Magento 2. User Guide Product Slider for Magento 2 User Guide Table of Contents 1. Product Slider Code Insert Guide 2. Product Slider Management 2.1. Managing Product slider 3. Product Slider Widget 4. Front-End View 5. Support

More information

Magento Blog Extension Contents

Magento Blog Extension Contents Magento Blog Extension Contents CHAPTER 1... 4 1. INSTALLING THE EXTENSION... 4 CHAPTER 2... 4 2. BLOG CATEGORY... 4 2.1 About... 4 2.2 Adding a new layout for category view... 4 2.3 Changing the featured

More information

FME Extensions Advanced SEO Friendly Blog Extension for Magento 2 User Guide - Version

FME Extensions Advanced SEO Friendly Blog Extension for Magento 2 User Guide - Version FME Extensions Advanced SEO Friendly Blog Extension for Magento 2 User Guide - Version 1.0 http://www.fmeextensions.com support@fmeextensions.com Intended Audience The content of this document is designed

More information

PROFILE DESIGN TUTORIAL KIT

PROFILE DESIGN TUTORIAL KIT PROFILE DESIGN TUTORIAL KIT NEW PROFILE With the help of feedback from our users and designers worldwide, we ve given our profiles a new look and feel. The new profile is designed to enhance yet simplify

More information

Magento Install Extension Manually Package.xml

Magento Install Extension Manually Package.xml Magento Install Extension Manually Package.xml So if you manually install your extensions and want to automatically check for with the mage tool, you have to put the respective XML file under var/package.

More information

Multi Vendor DropShipping - Configuration. Configuration. Back to User Guides (//creativeminds.helpscoutdocs.com/category/1092- dropship-m1)

Multi Vendor DropShipping - Configuration. Configuration. Back to User Guides (//creativeminds.helpscoutdocs.com/category/1092- dropship-m1) / Multi Vendor DropShipping - Configuration Configuration Back to User Guides (//creativeminds.helpscoutdocs.com/category/1092- dropship-m1) At the Admin Panel you can access the main configuration screen

More information

Cart32 Store Builder User Manual

Cart32 Store Builder User Manual Cart32 Store Builder User Manual 1 Contents 1. Client and Sales Summaries... 3 2. Main Categories... 3 3. Store Builder Sub-Categories... 3 Categories... 4 Add a Category/Subcategory... 5 Edit a Category/Subcategory...

More information

This extension allows you to add and control the following features and functionality:

This extension allows you to add and control the following features and functionality: Overview This extension allows you to take total control of your bundled products with a few clicks of the mouse. Bundled Mojo allows you to save different layout presets for Select Options, Checkbox Options

More information

User Guide. How it works? Contents. This guide is available at Github Wiki: alsoviewed/wiki

User Guide. How it works? Contents. This guide is available at Github Wiki:   alsoviewed/wiki User Guide This guide is available at Github Wiki: https://github.com/vovayatsyuk/magento2- alsoviewed/wiki Also Viewed Products - is a product suggestion module, powered by your visitors activity. Moreover,

More information

Configuring Autocomplete & Suggest

Configuring Autocomplete & Suggest How to install extension 1. Backup your store database and web directory. 2. Login to SSH console of your server and navigate to root directory of Magento 2 store. 3. Copy installation instructions from

More information

PIMCORE TRAINING GUIDE

PIMCORE TRAINING GUIDE PIMCORE TRAINING GUIDE VERSION 1.0, MAY 2017 Table of Contents 1. Welcome to Pimcore... 3 1.1. Pimcore training offerings... 3 2. Pimcore Basic Training (2 Days)... 4 2.1. Pre-requisites... 4 2.2. Training

More information

Quick Start Manual. Not2Order for Magento 2. Start here

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

More information

After making any changes to magento data (products, categories) you should reindex the data. To get it done go to System -> Index Management

After making any changes to magento data (products, categories) you should reindex the data. To get it done go to System -> Index Management 31/03/2017 Prepare your Magento Pagayo Manuals Pagayo Manuals PREPARE YOUR MAGENTO Refresh and Disable all the Magento cache When con guring your store, whatever theme or anything else you should refresh

More information

Accelerated Mobile Pages v1.x Configuration for Magento 1 From Plumrocket Documentation

Accelerated Mobile Pages v1.x Configuration for Magento 1 From Plumrocket Documentation Accelerated Mobile Pages v1.x Configuration for Magento 1 From Plumrocket Documentation Contents 1. Configuring Accelerated Mobile Pages 2. AMP Home Page Configuration 2.1. Setting AMP Category Images

More information