- Edited
Hi.
In this tutorial I will be explaining how to add Fontawesome Pro icons (any version you want).
Forum
- You need to get fa cdn. (Example: <link rel="stylesheet" href="https://pro.fontawesome.com/releases/YOUR_VERSION_HERE/css/all.css" type="text/css">)
- Now go to your administration page then navigate to appearance and scroll down until you see custom header and edit it like so
GG! Now you can use latest pro icons on your forum.
_Example of how to use is in admin section. Just keep on reading_
Admin
Now icons by default are not visible in admin dashboard due to custom options (custom header, custom css, etc.) are not affecting admin page. Now I'll show you how to fix this.
Download FTP software or just use your hosting provider file manager. (In the tutorial I'm using FileZilla as my FTP software)
Connect to your website and navigate to your forum folder
After you locate your forum folder open it and look for extend.php file.
Download the file to your pc and open it in text editing program of your choice. (I recommend Visual Studio Code but it will work in any text editor such as notepad)
After you opened the file in the program copy this code:
<?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; return [ // Register extenders here to customize your forum! (new Extend\Frontend('admin')) ->content(function (\Flarum\Frontend\Document $document) { $facdn = 'CDN_LINK_HERE'; $document->head[] = $facdn; }), ];
Replace CDN_LINK_HERE with your cdn link. (Same one you put in custom header)
After that save the file and upload it back to your forum folder. (If it asks you something like would you like to overwrite the file just click yes)
Bam! You're done! Now you can also see icons on admin page.
Example of usage
- Go to admin page
- Pick anything you want that uses fontawesome icons. (user groups, tags, etc.)
- After you start with the creation of chosen option go to icon input field and paste information for your icon like so
Choose icon from fontawesome. Make sure you use icons from correct version you used as link cdn
Now paste it in icon input field like so
Now if you done everything correctly icon should appear next to the tag name.
Thank you for reading
I'm sorry if I added too many usless steps but I want to make sure that everyone can use this tutorials from complete beginners to advanced programmers.
NOTE: You can still use fontawesome v5 icons that are shipped with flarum installation as usual. This tutorial just adds support for more icons