Blast Search Lucene Search Module for Magento 2

Size: px
Start display at page:

Download "Blast Search Lucene Search Module for Magento 2"

Transcription

1 Blast Search Lucene Search Module for Magento 2 Requirements : Magento 2.0.x or 2.1.x, pcre and pcntl php modules enabled

2 Version for Magento 2 1 Installation Manual Install Composer install Configuration Licensing General Active search engine Limit results Show out of stock last Search mode Lucene fulltext operator Chars to spaces Chars to trim UTF-8 compatibility Stop words No results behaviour Second pass enable Second pass quantity Third pass enable Third pass quantity No results search mode (for second pass) No results matching mode (for third pass) No results full text operator (for second pass) Synonyms Enabled synonyms Synonyms definitions Logs Enable logs FAQ Where is the index stored? How can I control which attribute is more important than another? Module is not working at all How can choose which attributes are searchable? What should I do if I have multi-server setup? I need help Thank You for your business, we are extremely happy that you decided to fix your Magento 2 search. To help you with the process we created this documentation which is divided into sections.

3 1 Installation At this point you have 2 choices you can install it manually via command line or if you have your own git repository you can add it there and include it. First method is quick and easy, but if you re thinking about reusing it on many projects please go composer route as it will be much easier to maintain consistency between all projects. 1.1 Manual Install Step 1: Backup your code directory and magento database you can do it via command line using n98magerun2 or you can do it directly from magento admin this will ensure that if things go wrong you can always revert back to previous version. Step 2: Download the extension from My Account section Step 3: Upload it to your Magento installation root directory ideally please check it on your dev/stage server first to make sure it works as expected. Step 4: Login to your server via SSH and in the terminal enter the following at the command line prompt: cd /path/to/your/magento2/root/folder mkdir p app/code/php4u/ unzip module bsl m2.zip module bsl m2/* d app/code/php4u/ mv app/code/php4u/module bsl m2 app/code/php4u/blastsearchlucene php bin/magento module:enable Php4u_BlastSearchLucene php bin/magento setup:upgrade If your Magento 2 is in production mode you need also php bin/magento bin/magento setup:static content:deploy php bin/magento bin/magento setup:di:compile Step 5: After login into Admin and opening Stores >> Configuration >> Advanced >> Advanced, the module will be shown in the admin panel Also you should notice new configuration section Php4u Extensions 1.2 Composer install

4 Create new git repository and call it for example php4u-blastsearchlucene, note the git ssh url to that newly created repository as you will need it later. Then create any folder and extract downloaded package there. Once you are inside newly created directory run following in the command line: git init git remote add origin git checkout b master git add * git commit m "Initial commit of version 1.1.3" git tag git push origin master tags At this point code should be pushed to your repository and ready to be included in your project. You can confirm it by going in your browser to the repository and checking source there. Step 1: Add repository url intto your project composer config repositories.php4ubsl git git@github.com:yourcompany/php4u blastsearchlucene.git Step 2: Add it as dependency to your project composer require php4u/module bsl m2 Step 3: refresh caches and other areas php bin/magento setup:upgrade If your Magento 2 is in production mode you need also php bin/magento bin/magento setup:static content:deploy php bin/magento bin/magento setup:di:compile 2. Configuration

5 Configuration can be found in Stores -> Configuration -> Php4u Extensions There are 5 main areas which will be described later. 2.1 Licensing In this section you need to enter serial key (license key provided to you at the purchase). If you have any issues locating it or you need regenerating it please contact support. It is quite important to understand that license is issued per domain, so if you have multiple frontend urls and also your admin url is different they all require separate licenses. Example: Admin myadmin.secretstoremanagement.com Store 1 secretshoesstore.com Store 2 - secretjeansstore.com Store 3 en.secretjeansstore.com As you can see above Store 2 and 3 are on same subdomain so only once license will cover it, but Admin, Store 1 and Store 2 are all different domains in total there are 3 licenses required. They need to be added at different store view. More about which domains you can use can be found here -

6 2.2 General Active search engine Indicates which search engine is in use in Magento 2. Our module follows Magento 2 best practice and implements separate search engine which can be selected in Stores -> Configuration -> Catalog -> Catalog -> Catalog Search Limit results If you specify 0 all results are returned which with large catalogues can become slow. For that reason, limit search results to a reasonable number Show out of stock last If you enable that option and you allow out of stock products to be visible they will be pushed as last into search results Search mode Lucene can work in 2 modes, full text or phrase. Full text will look for any keywords in any order. As example new shiny table search will be treated as searching for 3 keywords new, shiny and table in any order. These keywords can be present in any searchable field. To control if all or any of the keywords should be present see

7 Phrase mode is much strict and can product least number of results as it require all keywords to be in exact order. In 90% of cases full text mode is sufficient Lucene fulltext operator It is used only when in full text mode is enabled. By selecting AND all keywords must be present, OR will mean that any of the keywords must be present Chars to spaces When you need certain characters to be replaced as spaces please provide them in this field. It might be useful specially for any characters which are separating keywords such as hyphens. Also see next Chars to trim This option allows you to completely remove certain characters to be excluded from search and index. See as well UTF-8 compatibility Indexer is treating characters as UTF-8, but if for any reason you need non-utf characters to be stored and searched on use this method Stop words Every language has words which can be easily excluded from the index as those are too common to be indexed we have prepared a list which is loaded as a part of the module, but if you need to add more use this setting. Stopwords file is located in etc/stopwords folder of this module. 2.3 No results behaviour Module offers multiple pass in a situation where first pass provided no results Second pass enable This will enable second pass to be executed Second pass quantity

8 If the first pass provided less results than quantity specified in this setting second pass results will be appended to first pass results Third pass enable This will enable third pass to be executed. This will only be done if first, or first and second provided not returned results (or not enough results see 2.3.4) Third pass quantity If the first pass and second pass provided less results than quantity specified in this setting third pass results will be appended to first and second pass results No results search mode (for second pass) See as this is exactly same behaviour No results matching mode (for third pass) When third pass is executed it can be treated as wildcard or fuzzy search. Wildcard works only for keywords starting with given word so gre* will match green, gregory and gremlins, but it will not match ogre. Second mode fuzzy is a proximity search so it will try to match any keywords which are similar to given one. To check similarity module is using Levenshtein Distance, or Edit Distance algorithm. Fuzzy search can help with any misspellings No results full text operator (for second pass) It is used only when in second pass is enabled. By selecting AND all keywords must be present, OR will mean that any of the keywords must be present. 2.4 Synonyms Synonyms can be very useful when your customers are using keyword replacements which are not very similar to each other and fuzzy method is not sufficient Enabled synonyms This option will enable or disable synonyms functionality

9 2.4.2 Synonyms definitions In this section you can define which keywords are similar to which. 2.5 Logs Module can log quite a lot of information, which can be useful for any debugging purposed, but for busy websites it can also slow down indexing or searching process, so we do not recommend it to be enabled on production all the time. Logs are stored in [MAGENTO ROOT]/var/log/ folder Enable logs This option with enable or disable logging

10 3. FAQ You can find answers for most common questions here. If you want to ask us any question please send us on 3.1 Where is the index stored? Index is stored on disk in Lucene format in [MAGENTO ROOT]/var/indexer folders each storeview has separate subfolder there. This folder must have correct permissions so php can write/read there. 3.2 How can I control which attribute is more important than another? Login to admin and go to Stores > Attributes -> Product and edit attribute as per below then change weight settings bigger weight less important attribute is

11 3.3 Module is not working at all. Might be many reasons for that, most common are: Module is not enabled do bin/magento module:status and search for our module see section 1 Module license is not correct See section 2.1 There are conflicts of classes for example you have other modules which are overriding same classes / functionality Magento 2 is using original or other search engine see How can choose which attributes are searchable? See section What should I do if I have multi-server setup? You need to make sure that folder specified in 3.1 is shared from admin node to all frontend node this can be achieved by using simple nfs share, glusterfs share or you can do rsync every minute. What is important index when synced must be exactly as on admin so for rsync method please use delete option as well. 3.6 I need help Please contact us via

12 Again thank You for your trust and we are happy to be part of your success.

Php4u Payment Restrictions Module for Magento 2

Php4u Payment Restrictions Module for Magento 2 Php4u Payment Restrictions Module for Magento 2 Requirements : Magento 2.0.x or 2.1.x Version 1.0.0 for Magento 2 1 Installation...3 1.1 Manual Install... 3 1.2 Composer install...4 2. Configuration...5

More information

Admin Product Grid Category Filter

Admin Product Grid Category Filter Admin Product Grid Category Filter User/Installation Guide Version 2.2.0 www.magevision.com Copyright 2017 MageVision. All rights reserved. 1 1. Overview The Admin Product Grid Category Filter extension

More information

Import Export Products Attributes

Import Export Products Attributes Import Export Products Attributes Extension for Magento2 Installation Guide https://www.magebees.com/magento2-import-export-products-attributesextension.html Import Export Products Attributes By Our Websites

More information

5. Enable and configure Stripe in Magento Admin under Stores/Configuration/Payment Methods/Stripe

5. Enable and configure Stripe in Magento Admin under Stores/Configuration/Payment Methods/Stripe 1. Change Directory to your Magento root folder 2. Enter following commands to install module: composer config repositories.radwebstripe git git@github.com:radweb/stripe-magento2.git composer require radweb/stripe

More information

Delete Orders User Guide

Delete Orders User Guide Delete Orders User Guide Installation manual The extension can be installed by following the instructions below: 1) Connect to the Magento server as a user who has write permissions to the Magento root

More information

MexBS Google Invisible Recaptcha v1.0.0 User Guide

MexBS Google Invisible Recaptcha v1.0.0 User Guide MexBS Google Invisible Recaptcha v1.0.0 User Guide Welcome to the MexBs family, and thank you for purchasing the "Google Invisible Recaptcha v1.0.0" Magento extension! In this document we will guide you

More information

Twitter & Facebook Login v2.x Extension Installation for Magento 2 From Plumrocket Documentation

Twitter & Facebook Login v2.x Extension Installation for Magento 2 From Plumrocket Documentation Twitter & Facebook Login v2.x Extension Installation for Magento 2 From Plumrocket Documentation Contents 1. Installation 2. Uploading Magento 2 extension files 2.1. SSH Installation (requires SSH access

More information

In this tutorial, we will show you how to easily add your store to your Facebook fan/business page, just in two simple steps.

In this tutorial, we will show you how to easily add your store to your Facebook fan/business page, just in two simple steps. MexBS Facebook Store v1.0.0 User Guide Thank you for purchasing the Facebook Store extension and welcome to the MexBS family! In this document, we will guide you through the installation steps, and will

More information

[ 5 ] If you are in developer or default mode, run the following commands:

[ 5 ] If you are in developer or default mode, run the following commands: MexBS Dynamic Tier v1.0.0 User Guide Welcome to the MexBs family, and thank you for purchasing the "Dynamic Tier v1.0.0" magento extension! In this document we will guide you through the installation steps,

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

How to Migrate from Drupal Commerce to Magento

How to Migrate from Drupal Commerce to Magento How to Migrate from Drupal Commerce to Magento The essence of LitExtension products focuses on their friendliness to users, which means that every shopping cart owners, even who has little knowledge of

More information

Cart Product Selector. Quick Start Guide

Cart Product Selector. Quick Start Guide Cart Product Selector Quick Start Guide 1. Introduction Cart Product Selector is an extension which allows the customer to selectively choose products present in the cart and proceed to checkout with the

More information

USER GUIDE MAGENTO TO MAGENTO MIGRATION

USER GUIDE MAGENTO TO MAGENTO MIGRATION USER GUIDE MAGENTO TO MAGENTO MIGRATION The essence of LitExtension products focuses on their friendliness to users, which means that every shopping cart owners, even who has little knowledge of technology,

More information

rma_product_return_magento2

rma_product_return_magento2 rma_product_return_magento2 version BoostMyShop avril 19, 2019 Contents RMA Product Return for Magento2 1 1. Overview 1 2. Installation 1 First Installation 1 Upgrade 1 Disable extension 1 3. Customer

More information

Facebook Pixel for Remarketing for Magento 2

Facebook Pixel for Remarketing for Magento 2 Facebook Pixel for Remarketing for Magento 2 Facebook Pixel for Remarketing can be configured in few simple steps. We will guide through each step in this document. Installation Instructions Manual Installation

More information

SIMICART USER GUIDE SERIES. SimiCart Install SimiConnector

SIMICART USER GUIDE SERIES. SimiCart Install SimiConnector SIMICART USER GUIDE SERIES Install SimiConnector TABLE OF CONTENTS I. INSTALL SIMICONNECTOR 3 II. CHECK CONNECTOR AFTER INSTALL 12 I. INSTALL SIMICONNECTOR 1) Download SimiConnector: https://github.com/simicart/simicart-magento2.x

More information

INSTALLATION GUIDE. for Magento 2 Extension

INSTALLATION GUIDE. for Magento 2 Extension support@magestore.com sales@magestore.com Phone: +1-606-657-0768 INSTALLATION GUIDE for Magento 2 Extension 1. Generate License Certificate After purchasing an extension, you will receive an email that

More information

GDPR PRO FOR MAGENTO 2

GDPR PRO FOR MAGENTO 2 GDPR PRO FOR MAGENTO 2 Overview General Data Protection Regulation (GDPR) is a single privacy framework that aims to ensure that individuals personal data is handled with caution and care. The GDPR regulation

More information

EXTENSION FOR MAGENTO 2. (Updated May 23 rd 2017) INSTALLATION GUIDE

EXTENSION FOR MAGENTO 2. (Updated May 23 rd 2017) INSTALLATION GUIDE EXTENSION FOR MAGENTO 2 (Updated May 23 rd 2017) INSTALLATION GUIDE Confidential Information Notice Copyright 2017. All Rights Reserved. Any unauthorized reproduction of this document is prohibited. This

More information

MAGENTO 2 INSTALL EXTENSION MANUALLY

MAGENTO 2 INSTALL EXTENSION MANUALLY MAGENTO 2 INSTALL EXTENSION MANUALLY As you may know, there are two most popular ways of installing Magento 2 extension manually. The first one is to use COMMAND LINE (recommended) and the second one is

More information

Custom Carrier Trackers

Custom Carrier Trackers Custom Carrier Trackers User/Installation Guide Version 2.1.3 www.magevision.com Copyright 2017 MageVision. All rights reserved. 1 . 1. Overview The Custom Carrier Trackers extension gives you the ability

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

Indian GST extension User Manual

Indian GST extension User Manual extension User Manual Magento 2 extension helps creating and calculating tax rates and rules to make your Magento 2 stores GST ready. Table of Content 1. Extension Installation Guide 2. Configuration 3.

More information

Fastly_Cdn Module Installation Instructions

Fastly_Cdn Module Installation Instructions INSTALLATION.md Fastly_Cdn Module Installation Instructions Contents Prerequisites Installation Troubleshooting Prerequisites Before installing the Fastly_Cdn module you should setup a test environment

More information

Magento 2 Guide ING. Guide 1

Magento 2 Guide ING. Guide 1 Magento 2 Guide ING Guide 1 ING Payments How do I integrate product into my webshop? To make the integration process as easy as possible for you, we have developed various plugins for your webshop software

More information

1. Installation Instructions

1. Installation Instructions Table of Contents 1. Extension Installation 2. Custom Options Templates 3. Dependent Custom Options 4. Stock Management 5. Custom Options Inventory 6. Options Inventory Report 7. Individual Product Custom

More information

Web Push Notification

Web Push Notification Web Push Notification webkul.com/blog/web-push-notification-for-magento2/ On - January 13, 2017 This impressive module allows you to send push notification messages directly to the web browser. The biggest

More information

EASYPAY MODULE - MAGENTO 2

EASYPAY MODULE - MAGENTO 2 EASYPAY MODULE - MAGENTO 2 This document aims to describe the installation and configuration of the EasyPay Magento2 module. 1. INSTALLATION To assure correct functioning it s necessary to install and

More information

Stockbase Extension Magento 2.0

Stockbase Extension Magento 2.0 Stockbase Extension Magento 2.0 21 SEPTEMBER 2016 V. 1.0.0 STOCKBASE EXTENSION FOR MAGENTO 2.X WEBSHOP Introduction This module integrates your Stockbase service with your Magento (version 1.x+) shop for

More information

rm -rf pub/static/*; rm -rf var/view_preprocessed/*; php -f bin/magento setup:staticcontent:deploy

rm -rf pub/static/*; rm -rf var/view_preprocessed/*; php -f bin/magento setup:staticcontent:deploy Search Spell Correction current Extension installation 1. Backup your store's database and web directory. 2. Login to the SSH console of your server and navigate to the root directory of the Magento 2

More information

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0

USER MANUAL. MageMob Admin TABLE OF CONTENTS. Version: 1.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of MageMob Admin... 1 Installation & Activation... 2 Pre-requisite... 2 Installation Steps... 2 Installation via Composer... 4 Extension Activation...

More information

extension for Magento2 User Guide

extension for Magento2 User Guide Catalog Permissions extension for Magento2 User Guide version 1.0 Website: http://www.itoris.com Page 1 Contents 1. Introduction... 3 2. Installation... 3 2.1. System Requirements... 3 2.2. Installation...

More information

1. Installation Instructions

1. Installation Instructions Table of Contents 1. Extension Installation Instructions 2. Accessing the Extension Main Settings 3. Product Custom Option Templates 4. Individual Product Custom Options 5. Front-End View 6. User Agreement

More information

Ajax Quick Search Pro Extension for Magento 2

Ajax Quick Search Pro Extension for Magento 2 Ajax Quick Search Pro Extension for Magento 2 User Manual https://www.magebees.com/ajax-quicksearch-pro-extension-formagento-2.html Ajax Quick Search Pro Extension for Magento 2 By CONTENT Introduction

More information

Mobile Login extension User Manual

Mobile Login extension User Manual extension User Manual Magento 2 allows your customers convenience and security of login through mobile number and OTP. Table of Content 1. Extension Installation Guide 2. Configuration 3. API Settings

More information

User Manual for Market Place. Version 2.0 & above

User Manual for Market Place. Version 2.0 & above User Manual for Market Place Version 2.0 & above Multi Vendor Medma Marketplace Magento 2 Extension Magento 2 marketplace extension coverts you ecommerce Magento store into a complete online multi vendor

More information

USER MANUAL. Star Track Shipping TABLE OF CONTENTS. Version: 2.0.0

USER MANUAL. Star Track Shipping TABLE OF CONTENTS. Version: 2.0.0 USER MANUAL TABLE OF CONTENTS Introduction... 2 Benefits of Star Track Shipping... 2 Pre-requisites... 2 Installation... 3 Installation Steps... 3 Extension Activation... 7 Configuration... 8 Contact Us...14

More information

Magento 2 / Google Maps Integration User Guide For Extension Version 1.0.2

Magento 2 / Google Maps Integration User Guide For Extension Version 1.0.2 Magento 2 / Google Maps Integration User Guide For Extension Version 1.0.2 This document details the installation, configuration and functionality of the DP Extensions Google Maps Integration for Magento

More information

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

Magento 2 Extension. ( Version ) STORE.DCKAP.COM Magento 2 Extension ( Version 1.0.5 ) Table of Contents Introduction to Quick Order 2 Version & Compatibility Support 3 Features 3 How to Install This Module? 4 Module Configuration 6 Multiple SKU Box

More information

Control for CloudFlare - Installation and Preparations

Control for CloudFlare - Installation and Preparations Control for CloudFlare - Installation and Preparations Installation Backup your web directory and Magento 2 store database; Download Control for CloudFlare installation package; Copy files to /app/firebear/cloudflare/

More information

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

Magento 2 Extension. ( Version ) STORE.DCKAP.COM Magento 2 Extension ( Version 1.0.0 ) Table of Contents Introduction to Sliding Contact Us 3 Features 3 Version & Compatibility Support 3 How to Install This Module? 4 General Configuration 6 Sender &

More information

Category Dynamic Dependent Dropdown

Category Dynamic Dependent Dropdown User Guide Category Dynamic Dependent Dropdown Extension Version - 1.0.0 User Guide Version - 1.0.0 Magento Editions Compatibility Community - 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.0.6, 2.0.7, 2.0.8,

More information

User Guide. Order Attachments. Extension Version User Guide Version Magento Editions Compatibility

User Guide. Order Attachments. Extension Version User Guide Version Magento Editions Compatibility User Guide Order Attachments Extension Version - 1.0.0 User Guide Version - 1.0.0 Magento Editions Compatibility Community - 2.0.0 to 2.0.12, 2.1.0 to 2.1.4 Enterprise - 2.0.0 to 2.0.12, 2.1.0 to 2.1.4

More information

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

Magento 2 Extension. ( Version ) STORE.DCKAP.COM Magento 2 Extension ( Version 1.0.0 ) Table of Contents Introduction to Stock Notification 3 Version & Compatibility Support 3 Features 4 How to Install This Module? 4 General Configuration 6 Low Stock

More information

Easily communicate with customers using up-to-date, customized templates. Allow customers to return products as an existing customer or guest.

Easily communicate with customers using up-to-date, customized  templates. Allow customers to return products as an existing customer or guest. .0 USER GUIDE Version 1.0 support@exto.io http://exto.io/rma-for-magento-2.html Keep your staff informed with RMA s power Admin interface. Easily communicate with customers using up-to-date, customized

More information

Call For Price extension User Manual

Call For Price extension User Manual extension User Manual Magento 2 Call for Price extension helps hiding product price and Add to Cart and replace it with button to encourage visitors to contact you for quote. Table of Content 1. Extension

More information

1. Installation Instructions

1. Installation Instructions Table of Contents 1. Extension Installation Instructions 2. Accessing the Extension Main Settings 3. Adding New Cross Links 4. Managing Cross Links 5. Cross Links for Individual Products 6. Cross Links

More information

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

Magento 2 Extension. ( Version ) STORE.DCKAP.COM Magento 2 Extension ( Version 1.0.1 ) Table of Contents Introduction to FAQ Manager 3 Version & Compatibility Support 4 Features 4 How to Install This Module? 4 Configuration 6 Questions Management 7 Category

More information

Lazy Load Images Extension for Magento 2

Lazy Load Images Extension for Magento 2 Lazy Load Images Extension for Magento 2 User Manual https://www.magebees.com/lazy-load-images-extension-formagento-2.html Lazy Load Images Extension for Magento 2 By Support Ticket:- https://support.magebees.com,

More information

This guide will show you how to install and configure Fastly CDN extension for Magento 2.

This guide will show you how to install and configure Fastly CDN extension for Magento 2. INSTALLATION.md Installation guide This guide will show you how to install and configure Fastly CDN extension for Magento 2. You may choose between three installation methods composer installation, installation

More information

Store Login Access extension for Magento2. User Guide

Store Login Access extension for Magento2. User Guide Store Login Access extension for Magento2 User Guide version 1.0 Website: http://www.itoris.com Page 1 Contents 1. Introduction... 3 2. Installation... 3 2.1. System Requirements... 3 2.2. Installation...

More information

1. Installation Instructions

1. Installation Instructions Table of Contents 1. Extension Installation Instructions 2. Accessing the Extension Main Settings 3. Predefined Sphinx Settings 4. Sphinx Search Settings 5. Search Autocomplete Settings 6. Search Autocomplete

More information

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

Magento 2 Extension. ( Version ) STORE.DCKAP.COM Magento 2 Extension ( Version 1.0.0 ) Table of Contents Introduction to Customer Who Bought This Item Also Bought 3 Version & Compatibility Support 4 Features 4 How to Install This Module? 5 Module Configuration

More information

Instagram Widget User Guide

Instagram Widget User Guide Instagram Widget User Guide Welcome to the User Guide for Instagram Widget. Thank you for choosing our product. This quick user guide describes the functionality of the Instagram Widget extension by NEKLO

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

Purpletree SMS for Magento2

Purpletree SMS for Magento2 Purpletree SMS for Magento2 Installation & Configuration Instructions Pre-requisites [very important] PHP v5.6 or above Ioncube Loader v6 or above Installation by composer Update Magento s composer.json

More information

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

Magento 2 Extension. ( Version ) STORE.DCKAP.COM Magento 2 Extension ( Version 1.0.0 ) Table of Contents Introduction to Advanced Sample Orders 3 Features 3 Version & Compatibility Support 4 How to Install This Module? 4 General Configuration 6 Price

More information

User Guide. Image Gallery. Extension Version User Guide Version Magento Editions Compatibility

User Guide. Image Gallery. Extension Version User Guide Version Magento Editions Compatibility User Guide Image Gallery Extension Version 1.0.0 User Guide Version 1.0.0 Magento Editions Compatibility Community 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.0.6, 2.0.7, 2.1 Enterprise 2.0.0, 2.0.1, 2.0.2,

More information

User Guide. Customer Activation. Extension Version User Guide Version Magento Editions Compatibility

User Guide. Customer Activation. Extension Version User Guide Version Magento Editions Compatibility User Guide Customer Activation Extension Version 1.0.0 User Guide Version 1.0.0 Magento Editions Compatibility Community 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.0.5, 2.0.6, 2.0.7, 2.0.8, 2.1 Enterprise 2.0.0,

More information

Configuring Autocomplete & Suggest

Configuring Autocomplete & Suggest Search Autocomplete & Suggest current 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.

More information

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

USER MANUAL DELIVERY DATE SCHEDULER TABLE OF CONTENTS. Version: 1.0.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Delivery Date Scheduler...1 Installation & Activation...2 Installation Steps...2 Installation via Composer...4 Installation (Custom theme)...6

More information

Aitoc. Product Custom Options Management User Manual for Magento 2

Aitoc. Product Custom Options Management User Manual for Magento 2 Product Custom Options Management User Manual for Magento 2 Table of Contents 1. Installing the extension in Magento 2. 2. Product Custom Options Management: General Settings. 3. Creating a custom options

More information

Magento 2 Shipping Flat Rate5. Quick start guide

Magento 2 Shipping Flat Rate5. Quick start guide Magento 2 Shipping Flat Rate5 Quick start guide 1. Introduction Shipping Flat Rate5 is an upgraded extension of single flat rate option in Magento by serving multiple flat rate methods based on different

More information

Magento Pinterest Extension User Guide

Magento Pinterest Extension User Guide Magento Pinterest Extension User Guide Welcome to the Pinterest extension for Magento User Guide. Thank you for choosing our product. This user guide describes the functionality of Pinterest extension

More information

PagSeguro Payment. User Guide

PagSeguro Payment. User Guide PagSeguro Payment for Magento 2 User Guide Version 1.0.1 Support: info@pronkoconsulting.com Table of Contents Introduction About PagSeguro Payment For Merchants For Customers Functionality 1. Installing

More information

PayPalPlus Magento 2 User's Guide

PayPalPlus Magento 2 User's Guide PayPalPlus Magento 2 User's Guide The PayPalPlus module for Magento 2 replaces the complete selection of payment methods in Magento. The PayPalPlus module supports other, proprietary payment methods that

More information

Gift Card Manager Extension

Gift Card Manager Extension Ph: +91-120-4243310 Gift Card Manager Extension User Manual v1.0.0 Prepared by E-mail: support@knowband.com E-23, Sector-63, Noida. Phone: +91-120-4243310 1 Ph: +91-120-4243310 Contents 1.0 Introduction

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

TABLE OF CONTENT. Overview Support Versions Getting Started Guide Install by Copying Files Configuration...

TABLE OF CONTENT. Overview Support Versions Getting Started Guide Install by Copying Files Configuration... TABLE OF CONTENT Overview... 2 Support... 2 Versions... 2 Getting Started Guide... 3 Install by Copying Files... 3 Configuration... 3 Get Access Token... 6 Add Instagram Hash-Tag... 7 Customer Usage Description...

More information

Analytics for Magento 2.0

Analytics for Magento 2.0 Analytics for Magento 2.0 USER GUIDE Version 1.0 support@exto.io https://exto.io/analytics-for-magento-2.html Analytical tool for your Magento store with capabilities for sales, products and other data

More information

Buyer Seller Communication Marketplace Add-on

Buyer Seller Communication Marketplace Add-on Buyer Seller Communication Marketplace Add-on webkul.com/blog/marketplace-buyer-seller-communication-magento2/ On - March 17, 2016 Buyer Seller Communication Marketplace Add-on is a very useful module

More information

STORE LOCATOR For Magento 2

STORE LOCATOR For Magento 2 1 STORE LOCATOR For Magento 2 PREFACE Store locator also known as store finder empowers user to add unlimited stores with functionality of adding tags to differentiate them. It allows user to locate nearby

More information

Customer Redirect Pro for Magento 2

Customer Redirect Pro for Magento 2 Customer Redirect Pro for Magento 2 www.magepsycho.com (Quality extension provider for Magento 1 & Magento 2) Contents 1. Overview... 3 2. Installation... 4 3. Manage Settings... 5 3.1. General Settings...

More information

Payments. Magento2 Module User Guide for v4.0.x

Payments. Magento2 Module User Guide for v4.0.x Payments Magento2 Module User Guide for v4.0.x Table of Contents Payments Magento2 Module User Guide for v4.0.x 1 Introduction 2 2 Requirements 2 3 Fraud automatic order cancellation 2 4 Installation 2

More information

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

Magento 2 Extension. ( Version ) STORE.DCKAP.COM Magento 2 Extension ( Version 1.0.0 ) Table of Contents Introduction to Review Coupons 3 Version & Compatibility Support 3 How to Install This Module? 4 General Configuration 5 Email Template Configuration

More information

Rewards Points for Magento 2.0

Rewards Points for Magento 2.0 Rewards Points for Magento 2.0 USER GUIDE Version 1.0 support@exto.io https://exto.io/rewards-points-for-magento-2.html Magento 2 Reward Points extension provides you with effective rewards program, customizable

More information

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

Magento 2 Extension. ( Version ) STORE.DCKAP.COM Magento 2 Extension ( Version 1.0.0 ) Table of Contents Introduction to Shopping List Manager 3 Version & Compatibility Support 3 Features 4 How to Install This Module? 4 Module Configuration 6 General

More information

J2T SMS Gateway Extension for Magento 2 Documentation for v. 2.0.x

J2T SMS Gateway Extension for Magento 2 Documentation for v. 2.0.x J2T SMS Gateway Extension for Magento 2 Documentation for v. 2.0.x Summary How to install...2 How to configure... 3 Description of configuration fields... 4 How to add SMS to any transactional emails...

More information

Cache Warmer How to install the extension. How to upgrade extension. Disabling the Extension

Cache Warmer How to install the extension. How to upgrade extension. Disabling the Extension Cache Warmer 1.0.48 How to install the extension 1. Backup your store's database and web directory. 2. Login to the SSH console of your server and navigate to the root directory of the Magento 2 store.

More information

HiConversion Customer Experience Optimization

HiConversion Customer Experience Optimization HiConversion Customer Experience Optimization User Guide HiConversion, Inc. 5901 Broken Sound Pkwy NW Suite 100 Boca Raton, FL 33487 Tel: 866-251-4335 www.hiconversion.com info@hiconversion.com 1 Table

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

Product Questions/Answers extension for Magento2. User Guide. version 1.0. Website: Page 1

Product Questions/Answers extension for Magento2. User Guide. version 1.0. Website:   Page 1 Product Questions/Answers extension for Magento2 User Guide version 1.0 Website: http://www.itoris.com Page 1 Contents 1. Introduction... 3 2. Installation... 3 2.1. System Requirements... 3 2.2. Installation...

More information

(Cloud9) and to the Remote Repository (GitHub)

(Cloud9) and to the Remote Repository (GitHub) 1 2 3 Add Commit Push Steps to Move files into the Local Repository (Cloud9) and to the Remote Repository (GitHub) Assignment Steps: Step #1: Create a GitHub account Step #2: Link Cloud9 account to GitHub

More information

CUSTOMER APPROVAL FOR MAGENTO 2

CUSTOMER APPROVAL FOR MAGENTO 2 1 User Guide Customer Approval for Magento 2 CUSTOMER APPROVAL FOR MAGENTO 2 USER GUIDE BSS COMMERCE 1 2 User Guide Customer Approval for Magento 2 Contents 1. Customer Approval for Magento 2 Overview...

More information

Custom Registration Field For Magento2

Custom Registration Field For Magento2 Custom Registration Field For Magento2 webkul.com/blog/custom-registration-field-for-magento2/ On - February 4, 2016 Custom Registration Field for Magento2 will allow the admin to create custom fields

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

USER MANUAL. Language Translator TABLE OF CONTENTS. Version: 1.0.4

USER MANUAL. Language Translator TABLE OF CONTENTS. Version: 1.0.4 USER MANUAL TABLE OF CONTENTS Introduction... 2 Benefits of Language Translator... 2 Pre requisite... 2 Installation... 3 Installation Steps... 3 Extension Activation... 8 Configuration... 9 FAQ... 24

More information

EMARSYS FOR MAGENTO 2

EMARSYS FOR MAGENTO 2 EMARSYS FOR MAGENTO 2 Integration Manual July 2017 Important Note: This PDF was uploaded in July, 2017 and will not be maintained. For the latest version of this manual, please visit our online help portal:

More information

Import Export Products for Magento2

Import Export Products for Magento2 Import Export Products for Magento2 User Manual https://www.magebees.com/magento-2-import-export-productsextension.html Import Export Products for Magento2 By CONTENT Introduction 3 Features 4 How to Create

More information

Stock Notification Magento2 Extension

Stock Notification Magento2 Extension Stock Notification Magento2 Extension Table of Contents Stock Notification - Overview... 3 Version & Compatibility Support... 3 Features... 4 How to Install This Module?... 4 General Configuration... 5

More information

User Guide. Form Builder. Extension Version User Guide Version Magento Editions Compatibility. Community - 2.2

User Guide. Form Builder. Extension Version User Guide Version Magento Editions Compatibility. Community - 2.2 User Guide Form Builder Extension Version - 1.1.3 User Guide Version - 1.1.3 Magento Editions Compatibility Community - 2.2 1 Content Form Builder V-1.1.3 Introduction Installation Usage Admin General

More information

Lesson 7: Recipe Display Application Setup Workspace

Lesson 7: Recipe Display Application Setup Workspace Lesson 7: Recipe Display Application Setup Workspace Setup Workspace - 5 STEPS Step #1: Setup a new workspace in Cloud9 Step #2: Copy the files & folder to the local repository (Cloud9) Step #3: Create

More information

1. Installation Instructions

1. Installation Instructions Table of Contents 1. Extension Installation Instructions 2. Accessing the Extension Main Settings 3. SEO Markup 4. User Agreement 5. Support and Extra Info 1. Installation Instructions Uploading the extension

More information

Log Monitoring And Notification User Guide

Log Monitoring And Notification User Guide Log Monitoring And Notification User Guide Introduction Magento Log Monitoring And Notification is an advanced extension for Magento which allows to monitor Magento Logs and Reports in a convenient grid

More information

FREE AJAX SUITE. User Guide FOR MAGENTO 2. Version: Release Date: Product Page: Ajax Suite. Support:

FREE AJAX SUITE. User Guide FOR MAGENTO 2. Version: Release Date: Product Page: Ajax Suite. Support: FREE AJAX SUITE FOR MAGENTO 2 User Guide Version: 1.2.0 Release Date: 19.09.2017 Product Page: Ajax Suite Support: info@tigren.com C O P Y R I G H T 2017 TABLE OF CONTENTS Installation. 1 Ajax Suite....2

More information

Triveneto payment method for Magento 2

Triveneto payment method for Magento 2 Docs» Triveneto payment method for Magento 2 Triveneto payment method for Magento 2 This is the documentation for the Triveneto module for Magento 2, which integrates Magento 2 with the aforementioned

More information

rm -rf pub/static/*; rm -rf var/view_preprocessed/*; php -f bin/magento setup:staticcontent:deploy

rm -rf pub/static/*; rm -rf var/view_preprocessed/*; php -f bin/magento setup:staticcontent:deploy Cache Warmer current How to install the extension 1. Backup your store's database and web directory. 2. Login to the SSH console of your server and navigate to the root directory of the Magento 2 store.

More information

Bazaarvoice for Magento 2 Extension

Bazaarvoice for Magento 2 Extension Bazaarvoice for Magento 2 Extension Integration Guide Version: 7.0.5 Disclaimer Copyright 2016 Bazaarvoice. All rights reserved. The information in this document: Is confidential and intended for Bazaarvoice

More information

Improved Import / Export Magento 2 Extension Manual. Manual for Improved Import / Export extension for Magento 2

Improved Import / Export Magento 2 Extension Manual. Manual for Improved Import / Export extension for Magento 2 Improved Import / Export Magento 2 Extension Manual February 24, 2017 - Magento 2, Our extensions Manual for Improved Import / Export extension for Magento 2 Improved Import and Export extension allows

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