콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
468 화면

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 !

아바타
취소
베스트 답변

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


아바타
취소
베스트 답변

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.



아바타
취소
관련 게시물 답글 화면 활동
0
10월 25
2
0
10월 25
2
0
10월 25
2
0
10월 25
2
0
10월 25
2