diff --git a/docs/commerce/shopping_list/shopping_list.md b/docs/commerce/shopping_list/shopping_list.md index dfbb162f41..0e194f9abc 100644 --- a/docs/commerce/shopping_list/shopping_list.md +++ b/docs/commerce/shopping_list/shopping_list.md @@ -22,5 +22,10 @@ A user can have several shopping lists, including a default one named "My Wishli "commerce/shopping_list/shopping_list_design", "commerce/shopping_list/shopping_list_api", ("api/php_api/php_api_reference/namespaces/ibexa-contracts-shoppinglist.html", "PHP API Reference", "Ibexa\Contracts\ShoppingList"), +"api/event_reference/shopping_list_events/", +"search/shopping_list_search_reference/shopping_list_criteria/", +"search/shopping_list_search_reference/shopping_list_sort_clauses/", +"permissions/policies/#shopping-lists", +"permissions/limitation_reference/#shopping-list-limitation", ("api/rest_api/rest_api_reference/rest_api_reference.html#tag/Shopping-List", "REST API Reference", "commerce/shopping-list resources"), ], columns=2) =]] diff --git a/docs/commerce/shopping_list/shopping_list_design.md b/docs/commerce/shopping_list/shopping_list_design.md index 38caf239bc..37a9ae8df8 100644 --- a/docs/commerce/shopping_list/shopping_list_design.md +++ b/docs/commerce/shopping_list/shopping_list_design.md @@ -88,7 +88,7 @@ An object of this class contains the shopping lists and their entries, and has m An object of this class can be initialized with the `shoppingList.init()` function only once. This initialization creates the `window.ibexaShoppingList` global variable pointing to the object. -If you have several scripts needing an instance of `ShoppingList` class, `window.ibexaShoppingList` is the indicator if it has been initialized already and it points the object you should use. +If you have several scripts needing an instance of `ShoppingList` class, `window.ibexaShoppingList` is the indicator if it has been initialized already and it points to the object you should use. Preferably initialize an object of class `ShoppingList` on the top of the script, then use `window.ibexaShoppingList` in the next lines. It has the following methods: diff --git a/docs/commerce/shopping_list/shopping_list_guide.md b/docs/commerce/shopping_list/shopping_list_guide.md index 0ec06b099a..1b6cce9445 100644 --- a/docs/commerce/shopping_list/shopping_list_guide.md +++ b/docs/commerce/shopping_list/shopping_list_guide.md @@ -11,7 +11,7 @@ They can use it to save potential purchases, recurring product sets, and other i ## Availability -The shopping list feature is available for [Commerce edition](ibexa_commerce.md) as an [LTS update](editions.md#lts-updates). +The shopping list feature is available for [Commerce edition](ibexa_commerce.md) as an [LTS update](editions.md#lts-updates) since v5.0.6. ## Use cases diff --git a/docs/index.md b/docs/index.md index d9c9f102f7..3ad2bdb604 100644 --- a/docs/index.md +++ b/docs/index.md @@ -90,7 +90,7 @@

The newest LTS Update is Shopping list

-
Customers can store potential purchases, recurrent product set, and other whish lists for later use into carts.
+
Customers can use it to save potential purchases, recurring product sets, and other items for future use in the cart.
Learn more about this LTS Update diff --git a/docs/search/shopping_list_search_reference/shopping_list_criteria.md b/docs/search/shopping_list_search_reference/shopping_list_criteria.md index dd4931a72e..1429b9d20e 100644 --- a/docs/search/shopping_list_search_reference/shopping_list_criteria.md +++ b/docs/search/shopping_list_search_reference/shopping_list_criteria.md @@ -29,7 +29,7 @@ $query = new ShoppingListQuery(); The following example query returns current user's shopping lists, excluding the default one, and sorts them by name: -```php hl_lines="8-9" +```php hl_lines="7-8" [[= include_file('code_samples/shopping_list/search/criteria.php', 2) =]] ``` diff --git a/docs/search/shopping_list_search_reference/shopping_list_sort_clauses.md b/docs/search/shopping_list_search_reference/shopping_list_sort_clauses.md index 02e4c7f7eb..de3bc5c3e1 100644 --- a/docs/search/shopping_list_search_reference/shopping_list_sort_clauses.md +++ b/docs/search/shopping_list_search_reference/shopping_list_sort_clauses.md @@ -18,7 +18,7 @@ The sort clauses are in the [`Ibexa\Contracts\ShoppingList\Value\Query\SortClaus The following example returns all the shopping lists available to the current user. The returned shopping list are sorted with the default shopping list on top, followed by the rest sorted by their name. -```php hl_lines="11-12" +```php hl_lines="10-11" [[= include_file('code_samples/shopping_list/search/sort_clauses.php', 2) =]] ```