Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

How to remove the 'Powered by Odoo - The #1 Open Source eCommerce' footer from the website?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
websites
3 Replies
1865 Tampilan
Avatar
Piyush H

How to remove Powered by Odoo - The #1 Open Source eCommerce

0
Avatar
Buang
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Jawaban Terbai

Hi,

Please refer to the links:

Module:

1. https://odoo-community.org/shop/remove-odoo-com-bindings-on-website-2753#attr=942600


Solved Forum:

1. https://www.odoo.com/es_ES/forum/ayuda-1/how-to-remove-the-powered-by-odoo-login-page-246923


Hope it helps

1
Avatar
Buang
Avatar
D Enterprise
Jawaban Terbai

Hii,
Using Website Builder / Studio

Activate Developer Mode

Go to your website → Edit

Scroll to the footer

Click the "Powered by Odoo" text

Try deleting or hiding it 

Option B:
Edit the Website Footer Template 

Go to: Settings > Technical > Views

Search for view: website.layout or website.footer_custom

Find the line like:

<span>Powered by <a href="https://www.odoo.com" ...>Odoo</a></span>

Delete or comment it out

Click Save

i hope it is use full


1
Avatar
Buang
Avatar
Sagar
Jawaban Terbai

1. Use Odoo Studio (Enterprise Only)

If you have Odoo Enterprise + Odoo Studio, you can:

  1. Go to the Website ->Edit -> Footer.
  2. Select the footer block.
  3. Remove or edit the "Powered by Odoo" text.

Save.

2. Custom Theme / Code Override (Works in Community Edition)


If you are using Odoo Community Edition (or want a permanent code fix):


Steps:

-Create or edit a custom module (preferred) or directly modify the base theme (not recommended).

-Find this template:

addons/website/views/website_templates.xml


Locate the snippet:

<div class="o_footer_copyright">

    Powered by <a href="">Odoo</a> - The #1 Open Source eCommerce

</div>


Override this template in your custom theme/module:


<template id="remove_odoo_footer" inherit_id="website.footer_custom" customize_show="True">

    <xpath expr="//div[@class='o_footer_copyright']" position="replace">

        <!-- Removed Odoo Footer Text -->

    </xpath>

</template>


Update your module and restart Odoo:


./odoo-bin -u your_module_name


⚠️ Important Note:

The Odoo Communitiy Edition LGPL license and the Odoo Enterprise Edition License allow you to remove this message, but do not allow you to remove backend references - as this violates the terms of both licenses.

odoo.com/documentation/master/legal/licenses.html


Always remove via custom module to avoid overwriting on Odoo updates.

1
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Custom shop and cart page
websites
Avatar
Avatar
1
Jun 25
2565
How to enable Popup block in Odoo Website Module
websites
Avatar
0
Feb 25
1985
Suddenly disappeared website menu
websites
Avatar
Avatar
Avatar
3
Okt 24
2526
Website Edit not Launching (Odoo v17)
websites
Avatar
0
Jun 24
1981
odoo 14 multi websites domain issue
websites
Avatar
Avatar
Avatar
2
Okt 21
4267
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now