<!-- TITLE: Easy Guest Wishlist - Magento 2 module documentation -->
<!-- SUBTITLE: Author: Jakub Szczubełek -->
# Easy Guest Wishlist
## Module overview
Adds a simple product wishlist forYour not logged users.
## Module compatibility
This module is compatibile with Magento Community versions: **2.2** and **2.3**.
## How it works
After installing the module, new link **My Wishlist** appear in header. You can navigate to Your wishlist, add products to it and remove them from list.

Once You logged to Your account, Your products from not logged wishlist will be added to Your regular account wishlist.

## Demo
demo3.magecreation.com
## Installation
### Composer
1. Add repo to composer.json:
```text
"repositories": [
...
{
"type": "vcs",
"url": "git@git.auroracreation.com:aurora-modules/wishlist.git"
}
...
],
```
2. Add package to composer.json:
```text
"require": {
...
"aurora/wishlist": "*"
...
},
```
3. In Magento root folder run commands:
```text
composer update aurora-modules/wishlist
php bin/magento module:enable Aurora_EasyGuestWishlist
php bin/magento setup:upgrade
```
### Manual
1. Unzip archive.
2. Upload extension files on your server to:
```text
{Magento root}
└── app/
└── code
```
3. In Magento root folder run commands:
```text
php bin/magento module:enable Aurora_EasyGuestWishlist
php bin/magento setup:upgrade
```
## Changelog
### v1.2.0
- Added the ability to disable redirection to the wishlist page after adding a product
- Added the ability to remove a product that has already been added in the product view
### v1.2.0
- Refactoring
- Addeed tests (phpcs, phpunit, phpmd, phpstan) in pipelines
### v1.2.0
- Refactoring
- Addeed tests (phpcs, phpunit, phpmd, phpstan) in pipelines
### v1.1.2
- Update module
- Fix wishlist when customer never logged in
### v1.1.1
- Module update
### v1.1.0
- Guest wishlist products displays in sidebar block
### v1.0.3
- Cache modification
### v1.0.2
- Patch installed
### v1.0.1
- Empty cookie fix
### v1.0.0
- Fix for composer for marketplace
### Thank you for your interest in our products!