Version 3.0.10
November 6, 2025
Added
- Add the ability to set
listEnabledwhen adding new list items. - Add the ability to set
listTitlewhen adding new list items.
Fixed
- Fix querying list items returning items from deleted lists.
Version 3.0.9
September 12, 2025
Added
- Add list-owner enforcement for managing list items from the front-end.
Version 3.0.8
July 18, 2025
Added
- Add “Add to Cart” action events.
Changed
- Update English translations.
Version 3.0.7
May 1, 2025
Changed
- Update GraphQL resolvers to use
ElementCollectioncorrectly.
Fixed
- Fix PDF handling for Craft Cloud.
- Fix typo when generating an error when rendering a PDF template
- Fix an error where wishlist items on Matrix blocks in Craft 4 were throwing an error.
- Fix a Wishlist 3 migration error where custom fields on items weren’t being migrated properly.
- Fix normalization of bulk or multi-actions for items (like adding multiple items to a nominated
listId).
Version 3.0.6
March 4, 2025
Fixed
- Fix Wishlist items not working correctly for contentless elements like Matrix blocks.
Version 3.0.5
February 3, 2025
Fixed
- Fix an error when adding wishlist items to a cart.
Version 3.0.4
October 20, 2024
Changed
- Improve
list.getItem()performance when not providing additional query params to filter by.
Version 3.0.3
September 14, 2024
Fixed
- Fix unnecessary duplicates when purging lists.
- Fix an inconsistency when purging empty lists, where items still exist, but no longer relate to an element.
Version 3.0.2
September 7, 2024
Fixed
- Fix Wishlist summary not appearing in user profile in the control panel.
- Fix adding an item as a duplicate not working correctly.
Version 3.0.1
July 21, 2024
Added
- Add
listTypeHandleas a query param for fetching items. - Add Craft Teams support for permissions.
Changed
- Update English translations.
- Clearing a list after adding to the cart is only allowed if the list is the owners.
Fixed
- Fix an error when checking if an item is in a list.
- Fix an error when editing lists on the front-end for logged-in users.
- Fix an error for guests creating lists from the front-end.
- Fix an error when creating new items without a linked element.
- Fix list permissions enforcement for adding items to a cart from another users list.
Version 3.0.0
May 18, 2024
This is a major version with some breaking changes. Be sure to read our Upgrading from v2 guide.
Added
- Add the ability to create a list when adding or toggling an item in one request.
- Add
newListparameter when managing items, to force-create a new list, even if one for the chosen type exists (and add the items to that list). - Add
craft.wishlist.getUserList(params)to quickly get the current users list. Usingparamsallows you to specify other list types, and more. - Add
list.addItemUrl(element, params)list.toggleItemUrl(element, params)list.removeItemUrl(element, params). - Add
craft.wishlist.addItemUrl(element, params)craft.wishlist.toggleItemUrl(element, params)craft.wishlist.removeItemUrl(element, params). - Add support to update multiple items at once.
- Add bulk list actions for add/remove/toggle/update, to perform tasks on multiple lists at once.
- Add the ability to change the owner user for a list in the control panel.
- Add the ability to duplicate a list from the front-end.
- Add
List::isEmpty()to check if there are any items in the list. - Add
List::getItem(element, params)to get a specific item, based on a given element and any additional query params. - Add
List::hasItem(item)to check if a list has a specific item. - Add support for
Item::getInList(list)to pass in a specific list to check. - Add the ability to attach a PDF to the share email.
- Improve item query performance.
- Add
item.elementeager-loading. - Add
list.itemseager-loading. - Add
trashedElementelement query param for items. - Add the ability to populate cart line item options from list or item custom fields.
- Add ability to set a custom email template when sharing a list.
- Add support for items to pick any element type when editing via the control panel.
- Add
Items:: EVENT_MODIFY_SUPPORTED_ELEMENT_TYPESevent. - Update List Type custom fields to support UI elements and other field layout changes.
Changed
- Now requires PHP
8.2.0+. - Now requires Craft
5.0.0+. - All URL-based actions now have their query parameters encoded to prevent tampering with.
craft.wishlist.getInUserLists()now accepts an element as its parameter, not just an elementId.- Change
listTypeHandleparameter for managing items tolistType. - Item queries by default now don’t return items where the linked element has been trashed or deleted.
- PDFs now support using the current site’s locale language and formatting.
Fixed
- Fix duplicating lists (via “Save as a new list”) not working.
Removed
- Remove
listTypeIdparameter for managing items. UselistTypeinstead. - Remove
listTypeHandleparameter for managing items. UselistTypeinstead. - Remove
\verbb\wishlist\services\Items::getItemsForList(). - Remove
\verbb\wishlist\services\Lists::getList(). - Remove
forceSaveparameter oncraft.wishlist.lists(). Lists are now created when items are added, rather than when calling this tag.
Deprecated
- Deprecated
craft.wishlist.item(). Usecraft.wishlist.items(params)to find items, orcraft.wishlist.addItemUrl/toggleItemUrl/removeItemUrlto manage items.
Version 2.0.18
November 6, 2025
Fixed
- Fix querying list items returning items from deleted lists.
Version 2.0.17
September 12, 2025
Added
- Add list-owner enforcement for managing list items from the front-end.
Version 2.0.16
July 18, 2025
Changed
- Update English translations.
Version 2.0.15
May 1, 2025
Fixed
- Fix PDF handling for Craft Cloud.
Version 2.0.14
March 4, 2025
Fixed
- Fix Wishlist items not working correctly for contentless elements like Matrix blocks.
Version 2.0.13
September 14, 2024
Fixed
- Fix unnecessary duplicates when purging lists.
- Fix an inconsistency when purging empty lists, where items still exist, but no longer relate to an element.
Version 2.0.12
July 21, 2024
Fixed
- Fix an error when editing lists on the front-end for logged-in users.
Version 2.0.11
June 18, 2024
Changed
- Update English translations.
- Clearing a list after adding to the cart is only allowed if the list is the owners.
Fixed
- Fix an error for guests creating lists from the front-end.
- Fix list permissions enforcement for adding items to a cart from another users list.
Version 2.0.10
May 18, 2024
Changed
- Update English translations.
Fixed
- Enforce permissions for lists when managing via the front-end.
Version 2.0.9
March 4, 2024
Added
- Add
currentSiteas a variable when rendering a PDF. - Add the ability to order list items by their linked-to element’s title with
orderBy(‘elementTitle asc’).
Changed
- Bump
dompdf/dompdfrequirement to2.0.4.
Fixed
- Fix order of operations when uninstalling the plugin.
Version 2.0.8
January 30, 2024
Changed
- PDFs now support using the current site’s locale language and formatting.
Fixed
- Fix being unable to delete a disabled list.
Version 2.0.7
October 25, 2023
Fixed
- Implement
Element::trackChanges()for Blitz compatibility.
Version 2.0.6
July 11, 2023
Added
- Add
referenceto the List element index columns.
Fixed
- Fix when duplicating a list, a new reference wasn’t generated.
Version 2.0.5
May 27, 2023
Added
- Add empty linked element checks to
wishlist/items/cleanup-orphaned-items
Changed
- Only admins are now allowed to access plugin settings
Fixed
- Fix Wishlist list type permissions not using UIDs.
- Fix being unable to customise item element index columns in the control panel, when editing a list.
Version 2.0.4
December 18, 2022
Added
- Added support for item options to be updated when managing items. (thanks @bymayo).
- Add cross-site item management.
- Add support for
siteIdforcraft.wishlist.item.
Changed
- Update
elementGraphQL description.
Fixed
- Fixed PHP errors that could occur when executing GraphQL queries.
Version 2.0.3
October 23, 2022
Added
- Add batch processing for purge list/items commands.
Version 2.0.2
September 25, 2022
Fixed
- Fix an error when running Craft's Garbage Collection. (thanks @olivierbon).
- Fix an error when viewing list owners in the control panel.
Version 2.0.1
September 17, 2022
Fixed
- Fix an error when deleting a list type.
- Fix multiple list types able to be set as the default.
- Fix an error running
resaveconsole commands.
Version 2.0.0
July 20, 2022
Added
- Add missing translations.
- Add resave console command for elements.
- Add checks for registering events for performance.
- Memoize all services for performance.
- Rename base plugin methods.
- Add
archiveTableIfExists()to install migration.
Changed
- Now requires PHP
8.0.2+. - Now requires Craft
4.0.0+. - Now supports
dompdf/dompdf:^2.0. pdfAllowRemoteImagesis nowtrueby default.
Fixed
- Fix an error when uninstalling.
- Fix
project-config/rebuildsupport.
Removed
- Remove deprecated
itemandnoticefrom Ajax responses.
Version 1.4.17
December 18, 2022
Added
- Added support for item options to be updated when managing items. (thanks @bymayo).
Version 1.4.16
December 7, 2022
Added
- Add cross-site item management.
- Add support for
siteIdforcraft.wishlist.item.
Version 1.4.15
October 23, 2022
Added
- Add batch processing for purge list/items commands.
Version 1.4.14
August 9, 2022
Added
- Add
wishlist/items/cleanup-orphaned-items. - Show list owners with status and thumbnail in list element index view. (thanks @martyspain).
Fixed
- Fix items not being removed when pruning lists.
Version 1.4.13
July 27, 2022
Added
- Add missing English translations.
Fixed
- Fix an error when trying to update list items.
Version 1.4.12
March 15, 2022
Changed
- Now requires Craft 3.6.0+.
Fixed
- Fix GraphQL generator issues in some cases (Gatsby).
- Fix when purging lists, not taking into account timezone and comparing UTC dates correctly.
- Fix an error when generating PDFs and custom fonts, where the temporary folder isn’t writable (or created).
Version 1.4.11
September 7, 2021
Fixed
- Fix wishlist item title not being set when saving items through ajax requests.
- Fix
craft.wishlist.getInUserLists()not implemented properly.
Version 1.4.10
July 20, 2021
Fixed
- Fix
consolidateListsToUseronly working for default list types. - Fix lack of table prefix for
mergeLastListOnLoginhandling.
Version 1.4.9
June 4, 2021
Fixed
- Fix issue where trying to remove or toggle a wishlist item with the
optionsparam could have no effect. (thanks @benface). - Fix
mergeLastListOnLoginnot respectingallowDuplicatesby allowing duplicates during merging of guest and user lists. - Add
craft.wishlist.getInUserLists().
Version 1.4.8
May 8, 2021
Added
- Add the ability to match existing wishlist items by
itemIdandoptionswhen trying to remove or toggle a wishlist item in a list. - Allow custom fields and options to be added when toggling a wishlist item.
Version 1.4.7
April 21, 2021
Added
- Add notes for list/items when they have no custom fields in the control panel.
Fixed
- Fix an error with Commerce 3.3+ and DomPDF version collision.
- Fix an error when creating a new list item in the control panel.
Version 1.4.6
April 2, 2021
Fixed
- Fix
mergeLastListOnLoginnot correctly merging lists when logging in a user.
Version 1.4.5
March 4, 2021
Changed
- Update
mergeLastListOnLoginto only merge lists of the same type if they have the same title.
Fixed
- Fix default list type not saving to project config when first installing the plugin.
Version 1.4.4
January 24, 2021
Added
- Add
updateItemSearchIndexesconfig setting to control updating search indexes for Wishlist items. - Add
updateListSearchIndexesconfig setting to control updating search indexes for Wishlist Lists.
Changed
- Improve item and list database query performance.
Fixed
- Fix
craft.wishlist.itemforcing the creation of a new list, when it shouldn’t. - Fix incorrectly showing list items in other users’ lists.
Version 1.4.3
December 22, 2020
Fixed
- Fix
lists/add-to-cartnot supporting custom error/success messages. - Fix
lists/share-by-emailnot supporting custom error/success messages. - Fix user wishlist’s always showing the currently logged-in user, when editing a user in the control panel.
Version 1.4.2
December 16, 2020
Added
- When performing any list or item actions from the front end, a flash error/notice is now available with the result. Use
craft.app.session.getFlash('notice')to output this message when using theurl()methods or using a<form>POST submit. - When submitting a form for managing items, you can see a
successMessageorfailMessageto modify the flash message returned. This is not available when using theurl()methods. Be sure to hash the message:<input type="hidden" name="successMessage" value="{{ 'Override Message' | hash }}">.
Version 1.4.1
December 7, 2020
Changed
- Wishlist queries via GraphQL are now no longer automatically included in the public schema.
Version 1.4.0
November 10, 2020
Please note the change in behaviour for
craft.wishlist.item()has meant that you cannot rely on lists being auto-created anymore on page-load. Ensure anywhere you call{% set list = craft.wishlist.lists().one() %}you check{% if list %}before doing anything on the list. Ensure your templates work correctly.
Added
- Add params to
addUrl(),removeUrl()andtoggleUrl()to make it easier to create URLs. - Add listType handle to
craft.wishlist.item(). - Add
listTypeIdquery param to Item queries.
Changed
craft.wishlist.item()no longer automatically creates new lists when the page is loaded, preventing lots of lists being created for guests. Previously as soon as the page loaded with this call, a list would be created for users, meaning lists could get out of control easily. Be sure to double check your templates.
Version 1.3.1
October 6, 2020
Fixed
- Fix
optionsSignatureerror when updating.
Version 1.3.0
October 4, 2020
Added
- Guest lists are now (finally) persistent! Using cookies, even when the user closes their browser, their lists are retained for their next visit.
- Add migration for Shortlist plugin for Craft 2.
- Add migration for Upvote plugin.
- Add PDF template handling, to provide an easy way to generate PDF's of your lists and their content. See docs.
- Add Item Options, allowing you to save additional, arbitrary content on items. See docs.
- Add all available config settings to be able to be managed in the control panel.
- Add support for Craft 3.5+ field layouts.
- Add support for multiple tabs for lists.
- Add support for multiple tabs for list items.
- Add support to customise the item element table columns when editing a list.
- Add new tab to user’s account, for all wishlists and items they may own.
- Add
cookieExpiryconfig setting. - Add
showListInfoTabconfig setting. - Add
pdfFilenameFormatconfig setting. - Add
pdfPathconfig setting. - Add
pdfAllowRemoteImagesconfig setting. - Add
pdfPaperSizeconfig setting. - Add
pdfPaperOrientationconfig setting.
Changed
- Now requires Craft 3.5+.
Version 1.2.21
October 3, 2020
Added
- Add
craft.wishlist.pluginTwig variable, allowing access to plugin services. - Add
lists/update-itemscontroller action, to enable bulk-updating on list items, similar to a cart. - Add BCC and CC email options when sharing a list by email.
Version 1.2.20
September 26, 2020
Added
- Add
fieldsto share-lists controller action. Allowing additional content to be used in email notifications
Version 1.2.19
September 18, 2020
Added
- Add ability to remove items from a list when adding to cart.
Changed
- Allow
add-to-cartandshare-by-emailendpoints for lists to be accessed anonymously. - Change add-to-cart behaviour so that it only adds supplied purchasables to the cart - if provided.
Version 1.2.18
September 3, 2020
Changed
- The
updatelist action can now be accessed anonymously. (thanks @BrandonJamesBorders).
Version 1.2.17
August 21, 2020
Fixed
- Fix type check error when trying to determine list owner.
Version 1.2.16
August 10, 2020
Added
- Add
wishlist/lists/purge-inactive-listsconsole command. - Provide the
listobject to controller actions, to allow usage like{{ redirectInput('lists/{id}') }}. (thanks @brandonohara). - Add
purgeEmptyListsOnlyandpurgeEmptyGuestListsOnlyconfig settings.
Fixed
- Improve error-handling for some template functions, to guard against errors.
Version 1.2.15
June 30, 2020
Fixed
- Return list reference on
wishlist/lists/create. (thanks @BrandonJamesBorders).
Version 1.2.14
June 15, 2020
Added
- Add
wishlist/lists/updateaction to enable list updating from the front-end.
Version 1.2.13
June 9, 2020
Please note the deprecation of
itemfor Ajax requests. If you're using Ajax to handle the response from add/delete/toggle, please adjust your Javascript code that handles this to useitems.
Added
- Full item model is now included in Ajax responses for
togglerequests.
Fixed
- Fix incorrect return values for add/delete/toggle for Ajax requests.
Deprecated
itemis now deprecated in Ajax responses for add/delete/toggle actions, and will be removed in the next major release. Please adjust your code to instead rely onitemswhich is an array of returned Wishlist items. This is because these actions can support multiple items, rather than just a single one.
Version 1.2.12
May 31, 2020
Please note the change in default behaviour for
purgeInactiveLists.
Changed
- Change
purgeInactiveListsto be on by default. This will prevent your wishlists from getting out of control.
Version 1.2.11
May 29, 2020
Added
- Add
itemmodel to add/remove ajax actions. - Implement GraphQL for items and lists. See docs.
Version 1.2.10
May 16, 2020
Please note the change in default behaviour for
mergeLastListOnLogin.
Changed
- Change
mergeLastListOnLoginto be off by default. User lists won't be merged automatically, by default.
Version 1.2.9
May 14, 2020
Added
- Add
resave/wishlist-itemsconsole command. - Add
resave/wishlist-listsconsole command.
Fixed
- Fix potential error when fetching an items list, when it doesn’t exist.
Version 1.2.8
May 12, 2020
Added
- Return “items” when toggling an item. This will be the item ID and the action taken upon an item ('added' or 'removed').
Version 1.2.7
May 12, 2020
Added
- Add
actionparam to all item and list controller actions
Version 1.2.6
April 16, 2020
Fixed
- Fix logging error
Call to undefined method setFileLogging().
Version 1.2.5
April 16, 2020
Added
- Add
mergeLastListOnLogin, on by default to merge guests’ lists when logging in with existing saved lists.
Fixed
- Ensure saved lists for users aren’t overridden on next login.
Version 1.2.4
April 15, 2020
Changed
- File logging now checks if the overall Craft app uses file logging.
- Log files now only include
GETandPOSTadditional variables.
Version 1.2.3
April 7, 2020
Fixed
- Fix managing lists on the front-end and requiring permissions.
Version 1.2.2
April 1, 2020
Fixed
- Only allow editing of list types if editable.
- Fix default data when installing conflicting with project config.
- Ensure plugin project config is removed when uninstalling.
Version 1.2.1
January 30, 2020
Added
- Allow list actions to be callable via URL.
- Add
manageDisabledListsconfig setting to manage disabled lists and their items (default to true).
Fixed
- Fix error when adding a new item to list in the CP.
- Fix unable to update the element for an item through the CP.
Version 1.2.0
January 29, 2020
Added
- Craft 3.4 compatibility.
Version 1.1.2
January 18, 2020
Fixed
- Fix project config error.
Version 1.1.1
January 18, 2020
Fixed
- Fix list items having incorrect search attributes.
Version 1.1.0
January 10, 2020
Added
- Add project config support.
- Add support for add/delete/toggle multiple items. See docs
- Add
purgeInactiveGuestListsDurationto set times for guest lists to be purged, separate to user lists. This is default to 1 day. - Add purge lists to Craft's garbage collection.
- Add guest list to user list when logging in.
- Add email share action for lists. Users can directly and easily send their list via email.
- Allow managing of list items in the CP, including add and delete.
Changed
- Add
forceSavetocraft.wishlist.lists()to force a new list to be generated.
Fixed
- Fixed SQL error for PostgreSQL. (thanks @Tam).
- Fix
craft.wishlist.item()when called for a specific list. - Fix issue when calling multiple lists in the same request not returning the correct list.
Version 1.0.6
March 2, 2019
Added
- Add update controller action for items.
Fixed
- Fix title on CP edit item page.
- Fix saving items in the CP.
- Fix missing delete action for items
Version 1.0.5
March 1, 2019
Fixed
- Fix setting field params via URL not working correctly.
Version 1.0.4
February 27, 2019
Fixed
- Fix purge function to only remove lists with zero items.
Version 1.0.3
February 27, 2019
Fixed
- Fix typo in purge lists function.
Version 1.0.2
February 26, 2019
Fixed
- Fix permissions for lists.
- Fix permissions for list types.
- Fix sidebar menu for using plugin name override.
Version 1.0.1
February 17, 2019
Added
- Adding option to provide a list type handle or id when adding an Item. (thanks @echantigny).
Fixed
- Fix owner column not being correct.
- Correct AJAX action for list type deletion. (thanks @AugustMiller).
- Add routing rule for index of list type. (thanks @echantigny).
- Fix error thrown when viewing list when created in the CP. (thanks @echantigny).
Version 1.0.0
November 26, 2018
- Initial release.