OBTW、
@CamilleRoux
この件について、今すぐテストしてみました。
上記の私の投稿で記載したクエリを実行して、すべてのテーマの一覧を取得し(現在のテーマの状態を記録しておいてください)、データベースにアクセスして Rails または psql からこのクエリを実行できる場合、以下の手順を試してみてください。
すべてのテーマコンポーネントを無効化するクエリ
discourse=# update themes set enabled = false where component = true;
上記のクエリを実行すると、すべてのテーマコンポーネントが無効になります。
その後、破損したサイトにアクセスしようとした際に「何が起こるか」を確認できます。
もし私があなたの現在の状況にあった場合、ボット UA としてサイトを調査した結果に基づき、すべてのテーマコンポーネントを無効にします。
実際には、ナビゲーションリンクに関連するテーマコンポーネントから順に一つずつ無効にします(以下の JS エラーを参考にしてください)。なぜなら、私は直接 SQL データベースクエリを実行することに慣れているからです。あなたは SQL のスキルに自信がありますか?
もしこれに不安がある場合は、私にメッセージを送り、アクセス権を付与してください。あなたが置かれている「あまり良くない状況」から抜け出すお手伝いをします。現時点で入手している情報に基づけば、あなたが再び正常に運用できるようになると確信しています 
関連する JS エラーも参照:
Discourse.ExternalNavItem=Discourse.NavItem.extend({href:function(){return this.get('href');}.property('href')});I18n.translations.fr.js.filters.formations={title:"Formations",help:"Formations pour développeur·se·s"};Discourse.NavItem.reopenClass({buildList:function(category,args){var list=this._super(category,args);list.push(Discourse.ExternalNavItem.create({href:'https://www.humancoders.com/',name:'formations'}));return list;}});jQuery(function($){$(document).on("ready",function(){if(Cookies.get('hcFirstPage')==undefined){$(document).on('click','.toggle-menu',function(e){e.preventDefault();$('.main-nav').toggleClass('show');});var tweenBounce=TweenMax.to('#topbar',1.2,{maxHeight:"50px",delay:2,ease:Power1.easeInOut});var tweenBounceBack=TweenMax.to('#topbar',1.2,{maxHeight:"4px",delay:5.5,ease:Power1.easeInOut});Cookies.set('hcFirstPage',true,{expires:.04});}else{var tweenBounce=TweenMax.to('#topbar',0);}
window.addEventListener('unload',function(){Cookies.remove('hcFirstPage');});var tweenOpen,tweenClose;$('.topbar-toggle').on('mouseenter',function(){tweenBounce.kill();tweenOpen=TweenMax.to('#topbar',.4,{maxHeight:"50px",ease:Power1.easeInOut});});$('#topbar-zone-click').on('mouseenter',function(){tweenBounce.kill();tweenOpen=TweenMax.to('#topbar',.4,{maxHeight:"50px",ease:Power1.easeInOut});});$('#topbar').on('mouseenter',function(){tweenBounce.kill();tweenOpen=TweenMax.to('#topbar',.4,{maxHeight:"50px",ease:Power1.easeInOut});});$('#topbar-zone-click').on('mouseleave',function(){tweenOpen.kill();tweenClose=TweenMax.to('#topbar',.4,{maxHeight:"4px",ease:Power1.easeInOut});});$('.topbar-toggle').on('mouseleave',function(){tweenOpen.kill();tweenClose=TweenMax.to('#topbar',.4,{maxHeight:"4px",ease:Power1.easeInOut});});$('#topbar').on('mouseleave',function(){tweenOpen.kill();tweenClose=TweenMax.to('#topbar',.4,{maxHeight:"4px",ease:Power1.easeInOut});});});});