Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
3 Vastaukset
230 Näkymät

Hello,

I am working on a website with Odoo 19 and I still see the “Powered by Odoo” / “Website made with Odoo” mention in the footer.

Could someone please explain the correct way to remove or disable this mention in Odoo 19? Ideally, I would like to know the user-friendly way (through the Website Editor) and, if necessary, the technical way (through views or customization).

Thank you!


Bonjour,


Je travaille sur un site Web avec Odoo 19 et je vois toujours la mention "Powered by Odoo" / "Website made with Odoo" dans le pied de page.


Quelqu'un pourrait-il s'il vous plaît expliquer la bonne façon de supprimer ou de désactiver cette mention dans Odoo 19 ? Idéalement, j'aimerais connaître la manière conviviale (via l'éditeur de site Web) et, si nécessaire, la méthode technique (par le biais de vues ou de personnalisation).


Merci !

Avatar
Hylkää
Paras vastaus

Hi,

Try the following steps.


1- Activate developer mode.

2- Duplicate the "Brand Promotion Message" View

    - Navigate to Settings > Technical > User Interface > Views.

    - In the search bar, type Brand Promotion Message to find the view that you need to duplicate.

    - Select the Brand Promotion Message view from the list.3- Create a New View Based on the Original

      -With the "Brand Promotion Message" view open, click Duplicate.

       -Update the following fields:

                * View Name: Change it to something unique, like Custom Brand Promotion Message.

                * Key: Change it to something unique, like web.custom_brand_promotion_message.

                * Inherited View: Select Brand Promotion Message to ensure that your new view will inherit from the original.

4- Replace the Code in the Architecture

In the Architecture section of the duplicated view, replace the existing code with:

<xpath expr="//t[@t-name='web.brand_promotion_message']" position="replace">
    <div class="footer">
    </div>
</xpath>


This modification removes the "Powered by Odoo" mention while retaining the footer structure for your website.

5- Save and Apply

Solved forum :- https://www.odoo.com/sl_SI/forum/pomoc-1/how-do-i-turn-off-the-powered-by-odoo-text-in-the-footer-of-a-website-199187


Hope it helps


Avatar
Hylkää
Paras vastaus

Hello,

  • Enable debug mode. 
  • Go to in Website go to site > HTML / CSS-editor
  • click Edit HTML anyway
  • Top left choose SCSS (CSS)

Add following code :

.o_brand_promotion {

    display: none !important;

}

Save this and you are done.



Avatar
Hylkää
Paras vastaus

Hello Salim,



Here’s how you can remove the "Powered by Odoo" message from your website footer in Odoo 19:


  User-Friendly Method (Website Editor):
    1. Go to your website and enter Edit mode.
    2. Scroll down to the footer section.
    3. Hover over the "Powered by Odoo" text and check if it’s a customizable block. If so, you can edit or remove it directly.

  Technical Method (if the above doesn't work):
    1. Activate Developer Mode in Odoo (Settings > Activate the developer mode).
    2. Go to Technical > Views.
    3. Search for a view containing "website.layout" or "footer".
    4. Once you find the relevant view, you can either:
      a. Remove the code responsible for displaying the "Powered by Odoo" message (e.g., a <div> or <p> tag containing the text).
      b. Inherit the view and set the visibility of the element to false using XPath.


Note: Removing the "Powered by Odoo" message is part of the Odoo Enterprise license benefits. If you are using the Community version, consider that the message helps promote Odoo.


For personalized assistance:
https://www.pragtech.co.in/contact-us-mql.html

Avatar
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
0
lokak. 25
10
0
lokak. 25
3
0
syysk. 25
2
0
syysk. 25
2
0
syysk. 25
3