Home
FM Discord
YouTube Channel
FM24 Data Update
FM26 Data Update
FM26 OOP Player Roles
Downloads
Graphics
Challenges
Blog
Forums
Videos
Tactics
FM26
FM26 Real Name Fix
FM26 Shortlists
FM26 DB
FM26 Men's Wonderkids
FM26 Women's Wonderkids
FM26 Men's Club Finances
FM26 Women's Club Finances
FM24 Update
FM24
FM23
FM Saves
FM Database
FM Guides
Installation Guides
Records
Search
#849165 A small solution for the Faces and Logos Issue
OKV
I'm very lazy because I spend 90% of my time under macOS
#849054 A small solution for the Faces and Logos Issue
OKV
I have created a script for macOS users.
You need to navigate to the script's path in the terminal:
cd /PATH/and then run the command:
./fm26_graphics_fix.sh#848164 A small solution for the Faces and Logos Issue
OKV
Thank you so much for the kind words!! I'm always happy to help <3
#847961 Russia - Mir Russian Premier Liga 3D'25/26 for FM26 New! (01/11/25)
OKV
ez
#847715 3D Kits Official Thread FM 26 (NO REQUESTS)
OKV
[RUS] Lokomotiv Moscow 1,2,3
#847712 A small solution for the Faces and Logos Issue
OKV
The most important thing is the presence of graphics and a smile on the faces of the players in FM 26)))
#847711 🛠️ Metallic Logos Technical Support Thread
OKV
You can do everything according to my instructions and the schedule will work.
https://sortitoutsi.net/content/74902/a-small-solution-for-the-faces-and-logos-issue
#847709 A small solution for the Faces and Logos Issue
OKV
#847674 3D Kits 25-26 WIP Thread FM26
OKV
yes, only 3d
#847616 3D Kits 25-26 WIP Thread FM26
OKV
Me
Siborg
Maxi9494
russia - mir RLP
#847564 FM26 Logos > Clear Cache
OKV
#847545 A small solution for the Faces and Logos Issue
OKV
For macOS Users
faces:
cd "PATH TO YOUR FACES FOLDER"
for file in *.png; do if [[ ! "$file" =~ _face***\.png$ ]]; then mv "$file" "${file%.png}_face.png" fi done
config.xml for faces:
cd "PATH TO YOUR FACES FOLDER"
sed -i '' 's/from="\([^"]*\)"/from="\1_face***"/g' config.xml
***Logos are processed similarly using the appropriate suffixes (_club, _comp, _conf, _media, _nation)
#847543 A small solution for the Faces and Logos Issue
OKV
Hello everyone! As we all know, there's an issue with faces and logos that @Derek mentioned. I've tried to find a way to solve it.
1) Faces fix
Renaming Face Files Using PowerShell (I'm on Windows 10)
First, navigate to your faces folder using the
cdcommand. Then, run the following PowerShell script:cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\faces***"
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_face\.png$" } | ForEach-Object { $newName = $_.BaseName + "_face" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }
***Make sure to specify your own path to the faces folder.
The renaming process took about 25-30 minutes for me.
This command adds the
_facesuffix to each image filename. For example,1120.pngbecomes1120_face.png.You will also need to modify your
config.xmlfile. Use the following command for this:cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\faces***"; (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_face"' | Set-Content config.xml -Encoding UTF8
***But don't forget to specify your own folder path.
2) Logo fix
I use FMG Standard Logos, but I always delete the default, alternatives, fantasy, and retro folders.
For clubs/normal folders (123.png → 123_club.png):
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\clubs\normal"
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_club\.png$" } | ForEach-Object { $newName = $_.BaseName + "_club" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }
For clubs config.xml:
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\clubs\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_club"' | Set-Content config.xml -Encoding UTF8
For competitions/normal folders (123.png → 123_comp.png):
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\competitions\normal"
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_comp\.png$" } | ForEach-Object { $newName = $_.BaseName + "_comp" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }
For competitions config.xml:
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\competitions\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_comp"' | Set-Content config.xml -Encoding UTF8
For confederations/normal folders (1.png → 1_conf.png):
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\confederations\normal"
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_conf\.png$" } | ForEach-Object { $newName = $_.BaseName + "_conf" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }
For confederations config.xml:
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\confederations\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_conf"' | Set-Content config.xml -Encoding UTF8
For media/normal folders (adding _media suffix):
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\media\normal"
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_media\.png$" } | ForEach-Object { $newName = $_.BaseName + "_media" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }
For media config.xml:
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\media\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_media"' | Set-Content config.xml -Encoding UTF8
For nations/normal folders (adding _nation suffix):
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\nations\normal"
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_nation\.png$" } | ForEach-Object { $newName = $_.BaseName + "_nation" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }
For nations config.xml:
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\nations\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_nation"' | Set-Content config.xml -Encoding UTF8
Important: Remember to replace the path
C:\Users\****\Documents\Sports Interactive\Football Manager 26\graphics\logos\****\****with your own actual path!#847129 3D Kits Official Thread FM 26 (NO REQUESTS)
OKV
[RUS] PFC Sochi 1,2,3
#846914 3D Kits Template Thread for FM26 only
OKV
You're the best kit maker in the world, thank you so much!
#846869 Transferring 3D outfits from FM24 to FM26 in Photoshop
OKV
@Bhawkski
Hi everyone)
I got a little bored and decided to translate v1 and v2 into Russian, but I realized that v2 isn't available in English, so I decided to do an English translation as well.
In the PSD file, we change "Warstwa 1" to "Layer 1" and "Warstwa 2" to "Layer 2" = everything works.
#843882 FC’12 Russia - Pari 1st liga 2025-26 [v2.0]
OKV
ez
#841487 FC’12 Russia - Leon Vtorya Liga A Autumn 2025-26 [v1.5]
OKV
Ez
#839185 FC’12 Russia - Mir Russian Premier Liga 2025-26 [v3.5]
OKV
you need a fix)
#839160 FC’12 Russia - Mir Russian Premier Liga 2025-26 [v3.5]
OKV
this is normal
#839133 FC’12 Russia - Mir Russian Premier Liga 2025-26 [v3.5]
OKV
ez
#837335 Marat Akhmetzyanov
OKV
I got the id mixed up and made a mistake.
#837244 Marat Akhmetzyanov
OKV
miss
#835315 FM24 v.24.3 Russia (D5)
OKV
напиши мне в тг @kingokv
#835290 FM24 v.24.3 Russia (D5)
OKV
посмотри апдейт длинного, у него там д9 и составы,лиги актуальные на сезон 24/25
#825379 FM24 v.24.3 Russia (D5)
OKV
Выглядит интересно
#821350 Belarus FM24 Database
OKV
You are the best! Thank you for your hard work!
#819875 Akhjad Garisultanov
OKV
I wrote to the official representative of the team in social networks, and they sent me photos, and I removed the background from them💁🏻♀️
#818644 FC'12 Russia - Leon Vtorya Liga A 2025 [v2.5]
OKV
easy
#816722 FC'12 Download Area 2024/25
OKV
Everything's fine, just write more about the problem next time and I'll fix it. Still, I'm limited in Russia, and to use instagram or Facebook, I need a VPN, and it doesn't always work well) And with dicord, the same problem is that you need a VPN)))