Yorkies!

Welcome!

This community is for professionals and enthusiasts of our products and services.
Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

The goal of this site is create a relevant knowledge base that would answer questions related to Odoo.

Therefore questions and answers can be edited like wiki pages by experienced users of this site in order to improve the overall quality of the knowledge base content. Such privileges are granted based on user karma level: you will be able to do the same once your karma gets high enough.

If this approach is not for you, please respect the community.

0 upvote, add comments
0 insert text link, upload files
0 downvote
50 delete own comment
0 flag offensive, close own questions
300 edit any post, view offensive flags
500 accept any answer
500 delete any comment
0 close any posts
750 your biography can be seen as tooltip
1,000 delete any question or answer
// Wait for the document to be fully loaded // Initialize a Mutation Observer const observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { // Check if the element exists and its text is "Not Available For Sale" const spanElement = document.querySelector('span[data-oe-field="prevent_zero_price_sale_text"]'); if (spanElement && spanElement.textContent === "Not Available For Sale") { // Change the text to "This Puppy Found a Home" spanElement.textContent = "This Puppy Found a Home"; } }); }); // Configuration of the observer const config = { attributes: true, childList: true, characterData: true, subtree: true }; // Pass in the target node (document.body), as well as the observer options observer.observe(document.body, config);