bymizah Çünkü yanlış yere ekliyorsun, o kodları jQuery kütüphanesinden sonra çağırman gerekiyor. Sizin burada yaptığınız işlem sırası şu şekilde:
jQuery Kütüphanesi -> Yukarı Çık Butonu -> jQuery Kütüphanesi
Halbuki yapılması gereken:
extend.php
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
use Flarum\Extend;
use Flarum\Frontend\Document;
return [
// Register extenders here to customize your forum!
(new Extend\Frontend('forum'))
->content(function (Document $document) {
$document->foot[] = <<<'JS'
<script type="text/javascript">
// ...
// ...
// ...
</script>
JS;
})
];