diff --git a/README.md b/README.md
index 03ebab8147..a995a3d393 100644
--- a/README.md
+++ b/README.md
@@ -29,13 +29,14 @@ addon | version | maintainers | summary
[website_sale_b2x_alt_price](website_sale_b2x_alt_price/) | 15.0.1.1.1 | | Display prices with(out) taxes in eCommerce, complementing normal mode
[website_sale_block_partner](website_sale_block_partner/) | 15.0.1.0.0 | | This module help to blacklist partners description
[website_sale_cart_expire](website_sale_cart_expire/) | 15.0.1.1.1 | | Cancel carts without activity after a configurable time
+[website_sale_cart_selectable](website_sale_cart_selectable/) | 15.0.1.0.0 | | Enables to control button Add to cart display per product
[website_sale_charge_payment_fee](website_sale_charge_payment_fee/) | 15.0.1.0.0 | | Payment fee charged to customer
[website_sale_checkout_country_vat](website_sale_checkout_country_vat/) | 15.0.1.0.0 | | Autocomplete VAT in checkout process
[website_sale_checkout_skip_payment](website_sale_checkout_skip_payment/) | 15.0.1.3.2 | | Skip payment for logged users in checkout process
[website_sale_comparison_hide_price](website_sale_comparison_hide_price/) | 15.0.1.0.0 | | Hide product prices on the shop
[website_sale_google_tag_manager](website_sale_google_tag_manager/) | 15.0.1.0.0 | | Add support for Google Tag Manager Enhanced Conversions
[website_sale_hide_empty_category](website_sale_hide_empty_category/) | 15.0.1.0.1 | | Hide any Product Categories that are empty
-[website_sale_hide_price](website_sale_hide_price/) | 15.0.1.3.0 | | Hide product prices on the shop
+[website_sale_hide_price](website_sale_hide_price/) | 15.0.1.4.0 | | Hide product prices on the shop
[website_sale_invoice_address](website_sale_invoice_address/) | 15.0.1.0.2 | | Set e-Commerce sale orders invoice address as in backend
[website_sale_menu_partner_top_selling](website_sale_menu_partner_top_selling/) | 15.0.1.0.0 | | Displays the user's regular products in the e-commerce.
[website_sale_order_cancel](website_sale_order_cancel/) | 15.0.1.0.1 | | Allow customers to cancel their website sale orders
@@ -74,6 +75,7 @@ addon | version | maintainers | summary
[website_sale_wishlist_archive_cron](website_sale_wishlist_archive_cron/) | 15.0.1.0.0 | | Website Sales Wishlist Archive Cron
[website_sale_wishlist_hide_price](website_sale_wishlist_hide_price/) | 15.0.1.0.0 | | Hide product prices on the shop
[website_sale_wishlist_keep](website_sale_wishlist_keep/) | 15.0.1.0.1 | | Allows to add products to my cart but keep it in my wishlist"
+[website_sale_wishlist_menuitem](website_sale_wishlist_menuitem/) | 15.0.1.0.0 | | Website Sales Wishlist Menuitem
[website_snippet_product_category](website_snippet_product_category/) | 15.0.1.0.0 | | Adds a new snippet to show e-commerce categories
[//]: # (end addons)
diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt
index 6bda3431f0..79fe3765aa 100644
--- a/setup/_metapackage/VERSION.txt
+++ b/setup/_metapackage/VERSION.txt
@@ -1 +1 @@
-15.0.20251112.0
\ No newline at end of file
+15.0.20260604.1
\ No newline at end of file
diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py
index a600f21428..169919e041 100644
--- a/setup/_metapackage/setup.py
+++ b/setup/_metapackage/setup.py
@@ -15,6 +15,7 @@
'odoo-addon-website_sale_b2x_alt_price>=15.0dev,<15.1dev',
'odoo-addon-website_sale_block_partner>=15.0dev,<15.1dev',
'odoo-addon-website_sale_cart_expire>=15.0dev,<15.1dev',
+ 'odoo-addon-website_sale_cart_selectable>=15.0dev,<15.1dev',
'odoo-addon-website_sale_charge_payment_fee>=15.0dev,<15.1dev',
'odoo-addon-website_sale_checkout_country_vat>=15.0dev,<15.1dev',
'odoo-addon-website_sale_checkout_skip_payment>=15.0dev,<15.1dev',
@@ -60,6 +61,7 @@
'odoo-addon-website_sale_wishlist_archive_cron>=15.0dev,<15.1dev',
'odoo-addon-website_sale_wishlist_hide_price>=15.0dev,<15.1dev',
'odoo-addon-website_sale_wishlist_keep>=15.0dev,<15.1dev',
+ 'odoo-addon-website_sale_wishlist_menuitem>=15.0dev,<15.1dev',
'odoo-addon-website_snippet_product_category>=15.0dev,<15.1dev',
],
classifiers=[
diff --git a/setup/website_sale_cart_selectable/odoo/addons/website_sale_cart_selectable b/setup/website_sale_cart_selectable/odoo/addons/website_sale_cart_selectable
new file mode 120000
index 0000000000..6824ace7d7
--- /dev/null
+++ b/setup/website_sale_cart_selectable/odoo/addons/website_sale_cart_selectable
@@ -0,0 +1 @@
+../../../../website_sale_cart_selectable
\ No newline at end of file
diff --git a/setup/website_sale_cart_selectable/setup.py b/setup/website_sale_cart_selectable/setup.py
new file mode 100644
index 0000000000..28c57bb640
--- /dev/null
+++ b/setup/website_sale_cart_selectable/setup.py
@@ -0,0 +1,6 @@
+import setuptools
+
+setuptools.setup(
+ setup_requires=['setuptools-odoo'],
+ odoo_addon=True,
+)
diff --git a/setup/website_sale_wishlist_menuitem/odoo/addons/website_sale_wishlist_menuitem b/setup/website_sale_wishlist_menuitem/odoo/addons/website_sale_wishlist_menuitem
new file mode 120000
index 0000000000..b9a54713e8
--- /dev/null
+++ b/setup/website_sale_wishlist_menuitem/odoo/addons/website_sale_wishlist_menuitem
@@ -0,0 +1 @@
+../../../../website_sale_wishlist_menuitem
\ No newline at end of file
diff --git a/setup/website_sale_wishlist_menuitem/setup.py b/setup/website_sale_wishlist_menuitem/setup.py
new file mode 100644
index 0000000000..28c57bb640
--- /dev/null
+++ b/setup/website_sale_wishlist_menuitem/setup.py
@@ -0,0 +1,6 @@
+import setuptools
+
+setuptools.setup(
+ setup_requires=['setuptools-odoo'],
+ odoo_addon=True,
+)
diff --git a/website_sale_cart_selectable/README.rst b/website_sale_cart_selectable/README.rst
new file mode 100644
index 0000000000..4bbce038c1
--- /dev/null
+++ b/website_sale_cart_selectable/README.rst
@@ -0,0 +1,101 @@
+.. image:: https://odoo-community.org/readme-banner-image
+ :target: https://odoo-community.org/get-involved?utm_source=readme
+ :alt: Odoo Community Association
+
+============================
+Website Sale Cart Selectable
+============================
+
+..
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+ !! This file is generated by oca-gen-addon-readme !!
+ !! changes will be overwritten. !!
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+ !! source digest: sha256:cc6538081d4722f47a7167f5f271fb60e6dce5285d1dc15c15efab580f148979
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
+ :target: https://odoo-community.org/page/development-status
+ :alt: Beta
+.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
+ :alt: License: AGPL-3
+.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fe--commerce-lightgray.png?logo=github
+ :target: https://github.com/OCA/e-commerce/tree/15.0/website_sale_cart_selectable
+ :alt: OCA/e-commerce
+.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
+ :target: https://translation.odoo-community.org/projects/e-commerce-15-0/e-commerce-15-0-website_sale_cart_selectable
+ :alt: Translate me on Weblate
+.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/e-commerce&target_branch=15.0
+ :alt: Try me on Runboat
+
+|badge1| |badge2| |badge3| |badge4| |badge5|
+
+This module extends the functionality of the website to improve the control on
+the button "Add to cart". Button "Add to cart" can now be set to be published
+or not.
+
+**Table of contents**
+
+.. contents::
+ :local:
+
+Usage
+=====
+
+To use this module, you need to:
+
+#. Go to menu *Website -> Products -> Products*
+#. Edit or create one.
+#. Within the *Sales* tab, there will be a new field named *Button Add To
+ Cart*
+#. Set it or unset it to enable or disable the *Add To Cart* button in that
+ product.
+
+Bug Tracker
+===========
+
+Bugs are tracked on `GitHub Issues `_.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us to smash it by providing a detailed and welcomed
+`feedback `_.
+
+Do not contact contributors directly about support or help with technical issues.
+
+Credits
+=======
+
+Authors
+~~~~~~~
+
+* OpenSynergy Indonesia
+* Tecnativa
+* Akretion
+
+Contributors
+~~~~~~~~~~~~
+
+* Michael Viriyananda
+* David Vidal
+* Chafique Delli
+* `Quartile `_:
+
+ * Shinnosuke Morita
+
+Maintainers
+~~~~~~~~~~~
+
+This module is maintained by the OCA.
+
+.. image:: https://odoo-community.org/logo.png
+ :alt: Odoo Community Association
+ :target: https://odoo-community.org
+
+OCA, or the Odoo Community Association, is a nonprofit organization whose
+mission is to support the collaborative development of Odoo features and
+promote its widespread use.
+
+This module is part of the `OCA/e-commerce `_ project on GitHub.
+
+You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/website_sale_cart_selectable/__init__.py b/website_sale_cart_selectable/__init__.py
new file mode 100644
index 0000000000..0650744f6b
--- /dev/null
+++ b/website_sale_cart_selectable/__init__.py
@@ -0,0 +1 @@
+from . import models
diff --git a/website_sale_cart_selectable/__manifest__.py b/website_sale_cart_selectable/__manifest__.py
new file mode 100644
index 0000000000..c451d2af99
--- /dev/null
+++ b/website_sale_cart_selectable/__manifest__.py
@@ -0,0 +1,21 @@
+# Copyright 2016 OpenSynergy Indonesia
+# Copyright 2017 Tecnativa
+# Copyright 2020 Akretion
+# Copyright 2026 Quartile (https://www.quartile.co)
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
+{
+ "name": "Website Sale Cart Selectable",
+ "summary": "Enables to control button Add to cart display per product",
+ "version": "15.0.1.0.0",
+ "category": "Website",
+ "website": "https://github.com/OCA/e-commerce",
+ "author": "OpenSynergy Indonesia, Tecnativa, "
+ "Akretion, Odoo Community Association (OCA)",
+ "license": "AGPL-3",
+ "depends": ["website_sale"],
+ "data": [
+ "views/product_view.xml",
+ "views/website_sale_template.xml",
+ ],
+ "installable": True,
+}
diff --git a/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot b/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot
new file mode 100644
index 0000000000..d4df1790e0
--- /dev/null
+++ b/website_sale_cart_selectable/i18n/website_sale_cart_selectable.pot
@@ -0,0 +1,30 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * website_sale_cart_selectable
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 15.0\n"
+"Report-Msgid-Bugs-To: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: website_sale_cart_selectable
+#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_product__website_btn_addtocart_published
+#: model:ir.model.fields,field_description:website_sale_cart_selectable.field_product_template__website_btn_addtocart_published
+msgid "Button Add To Cart"
+msgstr ""
+
+#. module: website_sale_cart_selectable
+#: model:ir.model,name:website_sale_cart_selectable.model_product_product
+msgid "Product"
+msgstr ""
+
+#. module: website_sale_cart_selectable
+#: model:ir.model,name:website_sale_cart_selectable.model_product_template
+msgid "Product Template"
+msgstr ""
diff --git a/website_sale_cart_selectable/models/__init__.py b/website_sale_cart_selectable/models/__init__.py
new file mode 100644
index 0000000000..18b37e8532
--- /dev/null
+++ b/website_sale_cart_selectable/models/__init__.py
@@ -0,0 +1,2 @@
+from . import product_product
+from . import product_template
diff --git a/website_sale_cart_selectable/models/product_product.py b/website_sale_cart_selectable/models/product_product.py
new file mode 100644
index 0000000000..222105551a
--- /dev/null
+++ b/website_sale_cart_selectable/models/product_product.py
@@ -0,0 +1,14 @@
+# Copyright 2026 Quartile (https://www.quartile.co)
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
+
+from odoo import models
+
+
+class ProductProduct(models.Model):
+ _inherit = "product.product"
+
+ def _is_add_to_cart_allowed(self):
+ self.ensure_one()
+ if not self.website_btn_addtocart_published:
+ return False
+ return super()._is_add_to_cart_allowed()
diff --git a/website_sale_cart_selectable/models/product_template.py b/website_sale_cart_selectable/models/product_template.py
new file mode 100644
index 0000000000..693121e352
--- /dev/null
+++ b/website_sale_cart_selectable/models/product_template.py
@@ -0,0 +1,14 @@
+# Copyright 2016 OpenSynergy Indonesia
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
+
+from odoo import fields, models
+
+
+class ProductTemplate(models.Model):
+ _inherit = "product.template"
+
+ website_btn_addtocart_published = fields.Boolean(
+ string="Button Add To Cart",
+ copy=False,
+ default=True,
+ )
diff --git a/website_sale_cart_selectable/readme/CONTRIBUTORS.rst b/website_sale_cart_selectable/readme/CONTRIBUTORS.rst
new file mode 100644
index 0000000000..bc93dc8a51
--- /dev/null
+++ b/website_sale_cart_selectable/readme/CONTRIBUTORS.rst
@@ -0,0 +1,6 @@
+* Michael Viriyananda
+* David Vidal
+* Chafique Delli
+* `Quartile `_:
+
+ * Shinnosuke Morita
diff --git a/website_sale_cart_selectable/readme/DESCRIPTION.rst b/website_sale_cart_selectable/readme/DESCRIPTION.rst
new file mode 100644
index 0000000000..7bd3445258
--- /dev/null
+++ b/website_sale_cart_selectable/readme/DESCRIPTION.rst
@@ -0,0 +1,3 @@
+This module extends the functionality of the website to improve the control on
+the button "Add to cart". Button "Add to cart" can now be set to be published
+or not.
diff --git a/website_sale_cart_selectable/readme/USAGE.rst b/website_sale_cart_selectable/readme/USAGE.rst
new file mode 100644
index 0000000000..cd0db8320c
--- /dev/null
+++ b/website_sale_cart_selectable/readme/USAGE.rst
@@ -0,0 +1,8 @@
+To use this module, you need to:
+
+#. Go to menu *Website -> Products -> Products*
+#. Edit or create one.
+#. Within the *Sales* tab, there will be a new field named *Button Add To
+ Cart*
+#. Set it or unset it to enable or disable the *Add To Cart* button in that
+ product.
diff --git a/website_sale_cart_selectable/static/description/icon.png b/website_sale_cart_selectable/static/description/icon.png
new file mode 100644
index 0000000000..1dcc49c24f
Binary files /dev/null and b/website_sale_cart_selectable/static/description/icon.png differ
diff --git a/website_sale_cart_selectable/static/description/index.html b/website_sale_cart_selectable/static/description/index.html
new file mode 100644
index 0000000000..5577fbce7c
--- /dev/null
+++ b/website_sale_cart_selectable/static/description/index.html
@@ -0,0 +1,452 @@
+
+
+
+
+
+README.rst
+
+
+
+
This module extends the functionality of the website to improve the control on
+the button “Add to cart”. Button “Add to cart” can now be set to be published
+or not.
Bugs are tracked on GitHub Issues.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us to smash it by providing a detailed and welcomed
+feedback.
+
Do not contact contributors directly about support or help with technical issues.
OCA, or the Odoo Community Association, is a nonprofit organization whose
+mission is to support the collaborative development of Odoo features and
+promote its widespread use.
+
This module is part of the OCA/e-commerce project on GitHub.
You can optionally set a message that will be displayed when the prices are
hidden.
+
Hidden price message option at website level:
+
+
Go to Website > Configuration > Settings.
+
Enable Show hidden price message to public users if you also want public
+(not logged-in) users to see the hidden price message. By default the message
+is only shown to logged-in users.
This feature doesn’t support multi website. The default behavior is to hide the prices
along every website. It could be modified the boolean field on the partner to a many2many
@@ -434,7 +446,7 @@
Bugs are tracked on GitHub Issues.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -442,15 +454,15 @@
OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.
Bugs are tracked on GitHub Issues.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us to smash it by providing a detailed and welcomed
+feedback.
+
Do not contact contributors directly about support or help with technical issues.
OCA, or the Odoo Community Association, is a nonprofit organization whose
+mission is to support the collaborative development of Odoo features and
+promote its widespread use.
+
This module is part of the OCA/e-commerce project on GitHub.