Skip to content

Commit

Permalink
CC-9276: Support configurable products in the shopping list. (#2191)
Browse files Browse the repository at this point in the history
CC-9276 Support configurable products in the shopping list
  • Loading branch information
dmiseev authored Sep 9, 2022
1 parent a77f545 commit d63ad1a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
},
"suggest": {
"spryker-shop/customer-page": "Use this module when you want to show shopping lists on a customer page",
"spryker-shop/product-configuration-shopping-list-widget": "Add the module if you want to use ProductConfigurationShoppingListItemDisplayWidget or ProductConfigurationShoppingListPageButtonWidget.",
"spryker-shop/product-option-widget": "Use this module if you want to manage product options for shopping list items.",
"spryker/router": "Use this module when you want to use the Router.",
"spryker/silex": "Use this module when using plugins that need Silex dependencies."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@
{% endfor %}
{% widget 'SoldByMerchantWidget' args [item] only %}
{% endwidget %}

{% widget 'ProductConfigurationShoppingListItemDisplayWidget' args [item.shoppingListItem] only %}{% endwidget %}
</td>
{% endblock %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@
</li>
{% endblock %}
{% endwidget %}

{% widget 'ProductConfigurationShoppingListItemDisplayWidget' args [item.shoppingListItem] only %}{% endwidget %}
{% widget 'ProductConfigurationShoppingListPageButtonWidget' args [item.shoppingListItem] only %}{% endwidget %}
</ul>
{% endblock %}
</td>
Expand Down

0 comments on commit d63ad1a

Please sign in to comment.