Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
Coupe WPB
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Comment corriger le problème de la barre d’administration manquante dans WordPress (3 façons)

Vous cherchez à corriger le problème de la barre d’administration manquante dans WordPress ?

La barre d’administration est une barre flottante qui apparaît sur chaque page de votre site lorsque vous êtes connecté. Elle comporte des raccourcis utiles qui vous permettent d’accéder à différentes sections de la zone d’administration de WordPress.

Dans cet article, nous allons vous afficher comment vous pouvez corriger le problème de barre d’administration WordPress manquante, étape par étape.

How to fix missing admin bar issue in WordPress (3 ways)

Qu’est-ce que le problème de la barre d’administration manquante de WordPress ?

Pour la plupart des sites WordPress, la barre d’administration se trouve toujours en haut de l’écran lorsque vous êtes connecté. Mais, lorsque les utilisateurs/utilisatrices rencontrent le problème de la barre d’administration manquante, celle-ci sera remplacée par une barre blanche en haut de l’écran.

Cela peut être très gênant car vous devez aller dans votre panneau d’administration WordPress (WP admin) chaque fois que vous voulez modifier des publications et des pages, répondre à des commentaires, modifier les Réglages des plugins, et faire d’autres actions. Cela signifie que les utilisateurs/utilisatrices connectés ne peuvent pas facilement faire des choses à partir de l’interface publique de votre site.

L’absence de barre d’administration est généralement due à des thèmes mal codés, à des extensions en conflit et à des utilisateurs/utilisatrices mal configurés.

Ceci étant dit, voyons quelques façons de corriger le problème de barre d’administration manquante sur votre site. Utilisez simplement les liens rapides ci-dessous pour aller directement à la méthode que vous voulez essayer :

Réglage 1 : Corrigez la barre d’administration manquante en vérifiant les Réglages du profil de l’utilisateur.

L’un des correctifs les plus simples pour résoudre le problème de la barre d’administration de WordPress consiste à vérifier les Réglages du profil de l’utilisateur de WordPress. Il existe un réglage qui vous permet d’inactif la barre d’administration pour des utilisateurs/utilisatrices spécifiques.

Cette fonction a pu être inactive par erreur ou désactivée par un autre utilisateur de votre site.

Pour le vérifier, il suffit d’aller dans Utilisateurs  » Profil dans votre panneau d’administration WordPress, puis de repérer l’option  » Barre d’outils « .

Show toolbar in user profile

Vous devez vous assurer que la case « Afficher la barre d’outils lors de la vue du site » est cochée.

Cliquez ensuite sur le bouton « Mettre à jour le profil » au bas de la page pour enregistrer vos Réglages.

Méthode 2 : Corriger la barre d’administration manquante en vérifiant les fichiers du thème WordPress

Une autre raison fréquente de l’absence de barre d’administration est l’absence de la fonction wp_footer dans votre thème WordPress.

Tout d’abord, vous devez revenir à un thème par défaut. Cela vous aidera à déterminer si votre thème actuel est à l’origine du problème.

Il vous suffit de vous rendre dans Apparence  » Thèmes dans votre tableau de bord WordPress, de survoler l’une des options du thème par défaut, puis de cliquer sur  » Activer « .

Activate new WordPress theme

Si la barre d’administration apparaît, vous savez qu’il y a un problème avec votre thème WordPress existant.

Maintenant, revenez à votre thème d’origine et créez une sauvegarde WordPress complète afin de pouvoir restaurer votre site en cas de problème.

Ensuite, vous devez vous connecter à votre site WordPress à l’aide d’un client SFTP/FTP ou de l’application Gestionnaire de fichiers dans le tableau de bord de votre compte d’hébergement WordPress.

Pour plus de détails, vous pouvez consulter notre guide du débutant sur l’utilisation du FTP pour téléverser des fichiers sur WordPress.

Ensuite, allez dans le dossier du thème de votre site, qui est situé dans wp-content/themes/votre-nom-de-thème, et trouvez un fichier appelé footer.php.

Open theme folder footer.php file

Ensuite, vous devez ouvrir le fichier dans votre éditeur/éditrices de texte préféré et défiler jusqu’à la fin du fichier pour voir si vous avez ce code avant la balise <body> de fermeture :

<?php wp_footer(); ?>

Si ce n’est pas le cas, vous devrez ajouter le code et téléverser le fichier enregistré sur votre serveur.

Vérification du fichier Functions.php pour la ligne de code ajoutée

Une autre raison de l’erreur de barre d’administration manquante est qu’elle est masquée par le fichier functions.php de votre thème. Cet extrait de code a pu être ajouté par le développeur/développeuse de votre thème.

Pour corriger ce problème, vous devez ouvrir votre fichier functions.php, rechercher l’extrait de code suivant dans le fichier et le supprimer.

add_filter( 'show_admin_bar', '__return_false' );

Après cela, il vous suffit d’enregistrer le fichier et de le téléverser dans le dossier du thème de votre site.

Méthode 3 : Corrigez la barre d’administration manquante en vérifiant les problèmes liés aux extensions WordPress

Un conflit entre les extensions en conflit ou une extension mal codée peut également être à l’origine du problème de barre d’administration manquante dans WordPress.

Tout d’abord, vous devez déterminer quelle extension est à l’origine du problème. Pour ce faire, naviguez vers Plugins  » Installed Plugins pour accéder à la page des extensions activées.

Sélectionné, vous devez ensuite sélectionner toutes les extensions, puis sélectionner  » Désactiver  » dans le menu déroulant  » Actions groupées « .

Deactivate all plugins

Cliquez ensuite sur le bouton « Appliquer » pour désactiver toutes les extensions.

Ensuite, vous pouvez aller un par un et cliquer sur le bouton  » Activer  » sous chaque extension.

Activate plugin one by one

Si vous activez une extension et qu’elle entraîne la disparition de la barre d’administration, alors vous devez la désactiver et trouver une solution de remplacement. Pour plus d’idées, consultez notre liste des extensions WordPress incontournables pour les sites professionnels.

Enfin, un autre problème pourrait être à l’origine de la disparition de la barre d’administration. Si aucune des solutions ci-dessus n’a fonctionné, vous pouvez activer le débogage afin que WordPress vous affiche les avertissements et les notifications qui étaient masqués auparavant.

Pour ce faire, vous devez ouvrir votre fichierwp-config.php et localiser la ligne de code qui dit :

define('WP_DEBUG', false); 

Ensuite, vous devez modifier le « faux » en « vrai ».

Cela vous donnera des indices sur la cause du problème afin que vous puissiez dépanner WordPress pour résoudre le problème.

Pour plus de détails, consultez notre guide du débutant sur le dépannage des erreurs WordPress.

Bonus : Obtenir l’aide de services professionnels de maintenance et de support WordPress

Si vous rencontrez constamment des problèmes sur votre site WordPress ou que vous en avez assez de faire des tâches de maintenance générale, il est peut-être temps de faire appel à des professionnels.

Les services de maintenance WordPress peuvent s’occuper de tout, des mises à jour régulières aux sauvegardes et au dépannage des erreurs. Par exemple, avec les services de maintenance de WPBeginner, vous aurez accès à un support 24/7, à la surveillance du temps de fonctionnement, à la suppression des logiciels malveillants, et plus encore.

WPBeginner Pro Maintenance Services

Nous espérons que cet article vous a aidé à corriger le problème  » La barre d’administration de WordPress ne s’affiche pas « . Vous pouvez également consulter notre guide sur l’ajout d’un centre de notification dans l’administration de WordPress ou notre guide complet sur les erreurs de WordPress.

Si vous avez aimé cet article, veuillez alors vous abonner à notre chaîne YouTube pour obtenir des tutoriels vidéo sur WordPress. Vous pouvez également nous trouver sur Twitter et Facebook.

Divulgation : Notre contenu est soutenu par les lecteurs. Cela signifie que si vous cliquez sur certains de nos liens, nous pouvons gagner une commission. Consultez comment WPBeginner est financé, pourquoi cela compte et comment vous pouvez nous soutenir. Voici notre processus éditorial.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

L'ultime WordPress Toolkit

Accédez GRATUITEMENT à notre boîte à outils - une collection de produits et de ressources liés à WordPress que tous les professionnels devraient avoir !

Reader Interactions

70 commentairesLaisser une réponse

  1. Syed Balkhi

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Ravi

    Method 3 Worked ! « Simple event planner » plugin was causing the issues, thanks a lot.

    • WPBeginner Support

      You’re welcome, glad our guide could help :)

      Administrateur

  3. photoMaldives

    Thanks for all your excellent tuts – they have proved invaluable over the years. :)
    And good news for us that you are often featured high up in google rankings.
    For this particular issue, I had installed a security plugin that was limiting login by country – my admin bar was disappearing cos I was logged out!

    • WPBeginner Support

      Thanks for sharing, its always good to double check if there is a simple reason behind the bar going missing. Glad to hear you were able to find what was causing it on your site :)

      Administrateur

  4. Elliott Rodgers

    Brilliant! Probably saved me hours of work. At least taught me something new.

    • WPBeginner Support

      Glad our guide was helpful :)

      Administrateur

  5. Sam

    I had this problem. The toolbar was randomly popping in and out as a move through the pages. I hard reloaded the cache and it seems to have fixed for now.

  6. Clint D.

    My issue was caused by a plugin. I forgot that I had disabled the admin bar through the plugin, White Label CMS.

    Just wasted about an hour on this. Hope this helps somebody else.

    • WPBeginner Support

      Thanks for sharing this should someone else run into a similar issue :)

      Administrateur

  7. Carsten Legaard

    Now it is gone again, the admin bar, as it did so many times over the years. I have the footer.php right, but still the admin bar does not show.
    What else could bug it?

    • WPBeginner Support

      You may want to check in your user settings to see if it is disabled there.

      Administrateur

    • WPBeginner Support

      Glad our guide was helpful :)

      Administrateur

  8. Eszter

    I had the same problem, tried a lot of suggestions, but the solution was a row in functions.php: show_admin_bar (false); . The ‘true’ value solved the problem!

    • WPBeginner Support

      Glad you were able to find the issue and thanks for sharing your solution

      Administrateur

    • Dora

      Thank you, Eszter! This solved the issue for me.

  9. Malo

    Thank you !! it worked on the first try.

    • WPBeginner Support

      Glad our recommendation was helpful :)

      Administrateur

  10. Joshua

    I had to re activate the default theme then switch it back and it solved my issue.

    • WPBeginner Support

      Thanks for sharing what solved the issue for you :)

      Administrateur

  11. Michael G. Brattland

    I recently over the last two weeks had my Wordpress Admin Bar go missing on all but about a half dozen pages of my 560 Wordpress Elegant Thems DIVI and DIVI Builder site. I tried all the fixes posted here and discovered that my change of the web page URL in setting to take advantage of my ISP provided security certificate, making the address a https versus http caused this issue. I changed it back to a http URL and it resolved it allowing the Wordpress Admin Bar to come back on all 560 pages. My ISP is using PHP 5.4 and I have the most current Wordpress 5.1. thought I would share. This has been a big challenge to resolve. Hoping my ISP can advise why this could be.

    • WPBeginner Support

      You may want to also check with your hosting provider to ensure the SSL certificate was added correctly.

      Administrateur

  12. Tim Helmer

    You may want to disable CDN and W3 Total while doing edits.
    That allows me to see the edit bar and also see changes I make real time.
    Cloudflare turns itself back on after 3hrs so no need to worry. W3 Total needs to be turned back on tho… Preview mode: under General settings

  13. Okereke Divine

    The best solution that worked for me is creating a new user and if the issue repeats, then clear cache.

  14. Cory

    Thank you so much for the quick answer.

  15. Harry W

    I have tried all of these. Nothing. Admin bar still not showing. I login and I go straight back to logged out.

    Can only get to dashboard through direct link.

    Any suggestions? Bluehost « service » is non-existent.

    • Federico Mastrianni

      Check the ‘Admin Bar Menu’ setting in Yoast SEO>General>Features. It must be set to « OFF ».

  16. Deepak

    Thanks alot. You saved my day (y)

  17. Ayoola Adesoye

    Fixed. Thanks guys.. You guys are the reason why wordpress still exists till date. You just saved my income. My question please. I use Jetpack stat to view ,my web stat, and also use Google analytic, but they both do not bring the same stat. Jetpack can will for example show 200, while Google will show 300. And the funny part is that, on my host gator cpanel, i can view my site stat, and it also does not show the same stat. Please help, I am confused.,

  18. Ionut

    For those who use WP Fastest Cache put in exclude/exclude css, following css:

    admin-bar.min.css, dashicons.min.css

    At least for me this was the solution – i hope it will help

    • SiGa

      @IONUT – thanks for saving my day by leaving this hint here. Adminbar was not showing up only on Edge, adding those rules in WPFC solved it. Never would have thought of this!

    • Todd

      That worked for me too. Thank you.

  19. Pharid Ali

    It’s Working..

    Thank you..

    • Omar

      how you make it i tried several times and i can’t solve it, could you plz help me

  20. Chris

    Hey and thanks for the post. I have the same « blocked » message on my website

    I have added the part as described and it shows up when I look at the files, however it does not show up in the actual liive website. Looking at the source code there, I can just see inserted code from the plugins.

    I also checked with my provider one.com as well and they cant replicate the issue, it works for them using my account. So i reformatted my pc to make sure its not a browser issue, still the problem is happening. Also tried the default theme and diasbling all plugins as well as adding code to the htaccess file..

    Any idea why this is happening?

    Thanks
    Chris

  21. Arech Lim

    Just add another user account it was the easiest way to solve the problem.

    • Eddie P

      That was so easy. Thank you

  22. sadatia

    my site is
    Suddenly i have found that my admin bar (logged in user) info open to all viewers.
    Its horrible. Need a solutions.

  23. Arinze Prince

    Please help me out

    When I try to login via the front-end of the site, I enter my credentials, and hit log in. The page refreshes, and I’m not logged in. The admin bar does not appear, and I cannot access member-only parts of the site.

    When I log in via wp-admin, I can log in just fine. I go to the back-end admin dashboard. However, when I, while logged into wp-admin, browse to the main site (kmtc.be) it still shows I’m not logged in. The admin bar does not appear, I cannot access member-only parts of the site – despite being logged in. I’m thinking there’s some sort of breach between the back and front end of the site.

    When I deactivate all plugins, the problem persists. When I change the theme AND deactivate the plugins, still, I can’t login. I’ve done an overwrite of all wordpress and theme files – I still cannot login via the front-end.

    Help will be very much appreciated!

  24. Fernando Santos

    If nothing mentioned in the post works, try changing the Wordpress Address (URL) and the Site Address (URL) at Settings > General by adding or removing the www to them.

    If it works, you can switch it back then.

    Worked for me!

    • Raphael

      thanks man! this solved my isue.
      It seems that some url rewrite in the database was not completed and after doing what you instructed it gets updated and all gets back. simple as that.

      Valeu meu caro! abs!

    • Paul

      This did it for me. Nothing else in this thread helped, but this did it.

      Thank you for this. Duly noted this fix!

    • JohnSmith

      This worked for me as well, although I changed the http to https.

  25. Michael Warren

    In my case it was a CSS conflict hiding the text of the wpadmin bar. But not CSS from the theme or plugin stylesheets. It was a Chrome extension called Stylebot adding conflicting CSS that hid some of the items.

  26. Mesh

    Perfect solution…just what i was looking for..thanks very much for this post

  27. Silver Knight (Greg)

    I noticed there was some script code below the wp_footer() call. I moved that line of code to below the script and my admin bar came back.

    Thanks for the info.
    Greg

  28. Behdad Lotf

    none of these solutions worked for me! something weird happened to my site when I log in I cant view admin bar and also visual composer grid posts dont load they show nothing I have to admit that in my previous server i didnt have this problem can the problem be caused becauase of something related to server I recently moved to?

  29. Wayan Adika

    thanks a lot, I try to build WordPress theme from scratch, and find if admin bar is missing, then I search through Internet for the solution and found your site and fix the problem by put the code to the footer. Once again thank you very much

  30. Terry

    Thanks for posting this! However, after trying these suggestions, discovered that my problem was Sucuri security plugin hardening settings, which did not go away even when the plugin was turned off, so it masked the plugin being the problem when I tried that troubleshooting step that you listed. I had to reactivate the plugin and « unharden » the settings to fix the problem. (Not sure which specific hardened item did the trick, as I just reverted all to the original state.) It also fixed the problem we were having with the visual editor not working as well, by the way. Overzealous security setting! Just sharing this in case someone else is pulling out their hair like I was and wishing a search had brought up this particular issue that was not easily uncovered.

  31. santanu chowdhury

    Thanks for this tutorial…

  32. John O'Brien

    What do we do if the line IS there? I checked my file and everything is AOK. The wierd thing about my development site I am playing with is that if I go to the HOME page, the admin bar goes away. If I navigate to any of the other pages, the admin bar comes back. What is causing this?

  33. Andre

    I just changed to the parent theme again and it worked. Worth to try changing themes.

  34. pete

    in my case it was because of a caching plugin (fastest cache). I m not 100% sure why but it was about caching issues.

  35. Hajrullah

    Thank you for your simply solution you da best

  36. Rajat

    Thank you for the blog… This saved a lot of headache for me and helped me to solve my missing admin bar problem.

  37. Cara

    HELP! I can’t figure out what in the world is wrong with this theme… I’m mostly just changing the CSS, as it’s a theme that I’ve built and used on other WordPress sites before without problems. The and are in the right places. I checked to see if this problem existed with the other pre-installed themes and it is! So I thought maybe plugins… I deactivated, then deleted all my plugins. Nothing. I’m out of luck and don’t have a clue what to do now. Any ideas? Thanks!

  38. Lee

    After many hours of losing my mind I fixed it : ) stupid wp_footer() xD

  39. Christine

    Genius. Just making sure the box was checked worked for me! It was strange because it has been working perfectly and it suddenly stopped, but really happy you showed me where to look first!

  40. emeka

    worked like a charm…you are the best!

  41. Jan vD

    Had the same problem, tried a lot of suggestions, but them I found out there war a white line in the header. Removing the white line did the job.

  42. Chukwuma

    Hello, thanks a lot for making this post, but unfortunately in my own case the admin bar shows for only users with admin roles. Users with roles such as shop manager do not see the admin bar at the front end, but they see the admin bar at the back end. Is there a possible solution for this fix?

  43. Redrambles

    Also helpful would be to mention that you can deactivate your plugins by renaming the folders in your plugins folder, via FTP. (I usually put an underscore at the beginning of the name, such as ‘_akismet’).

    The ‘disappearing admin bar’ happened to me recently and I was unable to log into the dashboard with the ‘wp-admin’ suffix in the url. I deactivated the site’s plugins via FTP and was able to get back in the dashboard to do the rest.

Laisser une réponse

Merci d'avoir choisi de laisser un commentaire. Veuillez garder à l'esprit que tous les commentaires sont modérés selon notre politique de commentaires, et votre adresse e-mail ne sera PAS publiée. Veuillez NE PAS utiliser de mots-clés dans le champ du nom. Ayons une conversation personnelle et significative.