Displaying Product Prices in Odoo 18 Website Odoo 18 offers a straightforward way to display product prices on your website. Here’s a step-by-step guide: 1. Product Setup: Create Products: Navigate to Website — eCommerce — Products. Set Sales Price: Input the desired price for each product. Configure Taxes (Optional): If applicable, assign relevant taxes to […]
Here are the three common approaches and when to use them: 1. Stay on Product Page: Pros: Provides a seamless shopping experience. Encourages users to continue browsing and add more items. Can be useful for impulse purchases or when users want to quickly add multiple items. Cons: May lead to cart abandonment if users forget […]
In Odoo 18, the Product Reference Price is a feature that allows you to display the price per unit of measure on your website’s product pages. This is particularly useful for products that come in different quantities or packaging sizes. Here’s how it works: 1. Enable the Feature: Go to Website — Configuration — […]
Adding an Extra Step During Checkout in Odoo Website Odoo’s website builder offers a flexible way to customize the checkout process. You can add an extra step to collect additional information from customers, such as: * Specific preferences: Like color, size, or flavor choices. * Delivery instructions: Special handling requirements or delivery time windows. * […]
Odoo 18’s website module offers a powerful Product Comparison Tool that significantly enhances the shopping experience for your customers. This feature empowers buyers to make informed decisions by allowing them to compare multiple products side-by-side, based on key attributes. Enabling the Product Comparison Tool Navigate to Website Settings: Go to Website — Configuration — […]
In this video, we will explore how to create and use compute fields and compute functions in Odoo 17. Compute fields are special fields whose values are computed dynamically based on other fields or data in the system. This feature allows you to create fields that automatically update their values when related fields change, ensuring […]
In Odoo, “Prevent Sale of Zero Priced Products” is a feature specifically designed for the website module (from version 16 onwards). It acts as a safeguard to prevent customers from purchasing products listed with a price of zero. Here’s a breakdown of its functionality: Blocks Zero-Priced Purchases: When enabled, this feature stops customers from adding […]
In Odoo 17, the ability to set default values for fields dynamically using functions is a powerful feature that enhances flexibility and customization options within the system. Unlike static default values, which remain constant regardless of circumstances, dynamic defaults enable developers to define default values based on specific conditions or calculations.To implement dynamic default values, […]
In Odoo 17, SQL constraints are used to enforce data integrity rules at the database level. These constraints ensure that the data stored in the database meets certain criteria or conditions. SQL constraints are defined within the Python models of an Odoo module and are then translated into corresponding SQL constraints when the module is […]
In Odoo 17, to make a field storable, set store=True when defining it. By default, fields are storable unless set to store=False. Storable fields ensure data persistence across sessions and server restarts, crucial for maintaining data integrity and retrieval. However, computed or related fields are not stored by default (store=False) unless explicitly specified as store=True. […]