Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How we removing link that appear on login page of openerp(odoo)?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
odooV8
7 Réponses
35223 Vues
Avatar
KARTIK

I am install OpenERP (Odoo)in system, I want to remove links for

1. "Login with OpenERP"
2. "Manage Databses"
3. "Powered by OpenERP",

those appear on login page of OpenERP
I am using OpenERp Odoo(V8)Saas-4
I try to make change in "base.xml","webclient_templates.xml" and "database_selector.html" but still make no effect.

2
Avatar
Ignorer
KARTIK
Auteur

i make comments on that line in all files

Sehrish

did u try this: http://learnopenerp.blogspot.com/2018/09/remove-manage-database-and-powered-by-odoo-from-login-page.html

Avatar
Antonio Antiun
Meilleure réponse

You have to create a new module with a view to inherit from `web.login_layout` template from `web/views/webclient_templates.xml`. So

  • Create a new module `mytheme`:
  • `__init__.py`: Empty, because we do not need to import any module
  • `__openerp__.py`:

{
    'name': 'My Theme', 
    'version': '0.1', 
    'depends': ['web'], 
    'external_dependencies': {},
    'data': ['webclient_templates.xml'],
    
'js': ['static/src/js/mytheme.js'],
    'css': ['static/src/css/mytheme.css'], 
    'installable': True,
    'auto_install':False,
    'active':True,
}

  •  `views/webclient_templates.xml`:

<?xml version="1.0" encoding="UTF-8"?>
<openerp>
    <data>
        <template id="assets_backend" name="mytheme assets" inherit_id="web.assets_backend">
            <xpath expr="." position="inside">
                <link rel="stylesheet" href="/mytheme/static/src/css/mytheme.css"/>
                <script type="text/javascript" src="/mytheme/static/src/js/mytheme.js"></script>
            </xpath>
        </template>
        <template id="mytheme.login_layout" inherit_id="web.login_layout" name="My Theme Login">
            <xpath expr="//div[@class='oe_single_form_footer']" position="replace">
                <div class="oe_single_form_footer">Here you can write your login footer</div>
            </xpath>
            <xpath expr="//div[@class='oe_single_form_logo']" position="replace">
                <div class="oe_single_form_logo">
                    <img src="/mytheme/static/src/img/logo.png"
                         alt="My Theme Logo"
                         title="My Theme Logo" />
                </div>
            </xpath>
        </template>
    </data>
</openerp>

  • Create CSS and JS files:
    • static/src/css/mytheme.css
    • static/src/js/mytheme.js
  • Copy your logo (180x90 px is a good one):
    • static/src/img/logo.png

Install module in Settings > Modules > Local Modules. This will override login template, you can inherit from any other template and add or replace any html using an xpath expresion.

4
Avatar
Ignorer
Avatar
Ruchir Shukla
Meilleure réponse

did you added your web in your depence ? 

please share your code it will be easy to rely . 

0
Avatar
Ignorer
Avatar
Antonio M. Vigliotti
Meilleure réponse

Hi,

first you must manage Odoo server; if you are using Odoo Saas you cannot do it.

1.Remove login with OpenERP

if you mean announce bar, you can install web_adblock

if you mean link in user preference menu (on right top of screen) it is more compliecated and you have to write python code, not easy to explain here.

2.Manager database

In you server, you can update openerp-server.conf.  Here the meaning OpenERP/Parametri Configurazione

3.Why remove Powered by OpenERP ?

Legally and ethically you should hold OpenERP name

 

Antonio Maria Vigliotti

0
Avatar
Ignorer
Avatar
René Schuster
Meilleure réponse

I don't know what you mean by 'Login with OpenERP'.

For the rest see https://www.odoo.com/forum/Help-1/question/How-to-hide-database-list-45049#answer-45198

You can remove the link 'Powered by OpenERP' in the linked answer.

Regards.

0
Avatar
Ignorer
Avatar
Denis Baranov
Meilleure réponse

This app - https://apps.odoo.com/apps/modules/8.0/colors_customization/ - not only allows removing Odoo branding stuff, but replace it with your own

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
CONFIGURACION DE CORREO PROPIO POR PRUMERA VEZ
odooV8
Avatar
0
mars 25
2039
How to remove model if not in the py files anymore
odooV8
Avatar
0
janv. 25
4339
Start odoo server automatically in Ubuntu 14.04 on reboot Résolu
odooV8
Avatar
Avatar
1
août 23
15950
change password Résolu
odooV8
Avatar
Avatar
1
août 23
14501
Creating tables with %for and %endfor in email templates - Odoo is putting my loop outside the table, not inside.
odooV8
Avatar
Avatar
1
juil. 23
11820
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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