Type
magento2-module
Using queueit known user to manage magento integration
magento2-module
None
None
None
None
None
None
Server-side implementation of the QueueIT queueing system. This will put customers into a queue before they can enter the site. FPC modules could prevent this module from working properly.(Please contact queue-it for the practices of handling FPC scenario.)
How to install the module using different methods.
You can find QueueIT Knownuser extension in Magento Marketplace here. After adding QueueIT extension, you should follow instruction from the official Magento website to install it for your shop here.
First make a folder for QueueIT extension in your Magento2 app/code folder as below.
$ cd <your Magento install dir>/app/code
$ mkdir -p Queueit/KnownUser
Download code from QueueIT Magento2 extension and paste there. After that:
$ cd <your Magento install dir>/app/code/QueueIT
$ mkdir knownuserv3
Download code from QueueIT PHP SDK and paste there. Afterwards install it with
$ php bin/magento setup:upgrade
Doing so you can run the below command it should show Queueit_KnownUser as an installed module
$ bin/magento module:status
If Queueit_KnownUser was listed as Disabled module run the below command to enable it
$ php bin/magento module:enable Queueit_KnownUser
$ php bin/magento setup:upgrade
Install queueit module using composer
$ composer require queueit/knownuser
Enter your authentication
keys. Your public key is your username; your private key is your password.
Afterwards install it with
$ php bin/magento setup:upgrade
Doing so you can run the below command it should show Queueit_KnownUser as an installed module
$ bin/magento module:status
You can find an official help about how to install a Magento extension here.
After installing the module, go to the below menu and enable the module, enter your CustomerId and Secret Key which you have got from QueueIT.
Stores -> Configuration -> Services -> Queueit KnownUser
In here
Account -> Security -> Known User (tab) -> Default secret key
{{store_url}}/rest/V1/queueit/integrationinfo/
Content -> QueueIt KnownUser -> Admin
. You can see the current config at this page and also upload confugartion file for updating it.If you have Full Page Cache enabled you should add queue-it javascript to your pages as below :
1. Make sure KnownUser code will not run on static pages (by ignoring those URLs in your integration configuration).
2. Add below JavaScript tags to all static pages :
You can add this tag in the header files : ...\vendor\magento\module-theme\view\frontend\templates\html\header.phtml
<script type="text/javascript" src="//static.queue-it.net/script/queueclient.min.js"></script>
<script
data-queueit-intercept-domain="{YOUR_CURRENT_DOMAIN}"
data-queueit-intercept="true"
data-queueit-c="{YOUR_CUSTOMER_ID}"
type="text/javascript"
src="//static.queue-it.net/script/queueconfigloader.min.js">
</script>
3. Add some triggers for your dynamic ajax calls you want to queue users on.