Skip to main content

Posts

Showing posts from December, 2025

Liferay Client Extension Configuration

 Liferay DXP provides powerful capabilities to extend and customize enterprise portals through Liferay Client Extensions . These client extensions allow developers to enhance functionality without changing the core platform, making upgrades easier and solutions more maintainable. However, configuring a Liferay Client Extension in a way that is simple and user friendly is often a challenge, especially when non technical users are involved. The Configuration Challenge in Client Extensions Client extensions traditionally rely on basic key value configuration. While this method is technically effective, it is not always practical for administrators or content authors. Remembering exact keys and entering values correctly can lead to errors and inefficiencies. The lack of structured input options also makes the configuration experience less intuitive. Improving Usability with Fragment Configurations Fragment configurations in Liferay address these challenges by offering a more organized ...

Creating Personalized Digital Experiences with Liferay DXP

 In today’s digital world, people expect online content that speaks directly to their needs and interests. Businesses that deliver relevant and meaningful experiences build stronger connections and higher engagement. Liferay DXP helps organizations do exactly that by allowing them to present the right content to the right audience at the right time. It transforms ordinary interactions into personalized digital experiences. What is Personalization with Liferay DXP? Liferay DXP allows companies to move beyond static websites. It enables them to create dynamic, user-aware experiences where pages, content, and layouts adapt depending on the visitor’s behavior, role, or preferences. Whether it is a public website, a customer portal, or an internal intranet, Liferay makes digital experiences feel personal and relevant. Key Features That Enable Personalization Segmentation and Targeting Define user groups based on behavior, location, device type, role, or other attributes. These se...

Odoo Wrapper Function

  Odoo provides a modular and flexible framework that allows developers to extend functionality without disrupting the core system. One of the most effective techniques for doing this is using a wrapper function. A Odoo wrapper function allows you to add additional behavior around an existing method while preserving the original business logic. This makes enhancements safer, more maintainable, and easier to manage during upgrades. A wrapper works like a layer around a function. Instead of replacing the original method completely, you wrap it with additional instructions that execute before or after the original logic runs. This allows developers to add logging, validation, monitoring, or other features without touching the base code. What Is a Wrapper Function A wrapper function is a function that surrounds another function to extend its behaviour. Rather than overriding the original method and duplicating code, a wrapper calls the original method from inside it, adding new functi...