DJHY1 - Comments

Comments
#882451 FM26 Real Name Fix v5.0 - for FM26.3.1 [26/05/2026] - USE THE WORKAROUND IN THE FIRST POST IF SOME CLUB NAME CHANGES AREN'T WORKING
DJHY1
6 years ago
3 hours ago
15
Premium

Just a heads up, for some reason, the PSG women's team has a 3-letter name abbreviation for Lyon, i.e. LYO

#876450 FM26 Real Name Fix v5.0 - for FM26.3.1 [26/05/2026] - USE THE WORKAROUND IN THE FIRST POST IF SOME CLUB NAME CHANGES AREN'T WORKING
DJHY1
6 years ago
3 hours ago
15
Premium
By salih topazik 30 March 2026 - 18:16 PM UTC 

same 

 

I am currently trying to sort it for myself, but that isn't going quite as planned thus far. 

#876444 FM26 Real Name Fix v5.0 - for FM26.3.1 [26/05/2026] - USE THE WORKAROUND IN THE FIRST POST IF SOME CLUB NAME CHANGES AREN'T WORKING
DJHY1
6 years ago
3 hours ago
15
Premium

There don't seem to be all that many Brazilian names for clubs in the fix. Only five.

#853920 Megapack 2026 by falsobohemio (234 men´s structures + 208 women´s structures + 21 cups)
DJHY1
6 years ago
3 hours ago
15
Premium
By falsobohemio 16 November 2025 - 15:51 PM UTC 

Faltan nueve paises africanos, Asia y Oceania!

My eyes prove unreliable once again

 

#853636 Megapack 2026 by falsobohemio (234 men´s structures + 208 women´s structures + 21 cups)
DJHY1
6 years ago
3 hours ago
15
Premium

To my eye, this looks like everything but the Asian leagues now. Is that correct?

#851892 Football Manager 26 Prematch Lineup Graphics Pack UPDATED 06-12-2025
DJHY1
6 years ago
3 hours ago
15
Premium
By Damien 14 10 November 2025 - 19:15 PM UTC 

Every unlicensed competition, yes.

 

Cheers

#851872 Football Manager 26 Prematch Lineup Graphics Pack UPDATED 06-12-2025
DJHY1
6 years ago
3 hours ago
15
Premium

Will this replace every single match up graphic from unlicensed comps, or just Serie A

 

#847710 A small solution for the Faces and Logos Issue
DJHY1
6 years ago
3 hours ago
15
Premium
By OKV 31 October 2025 - 20:26 PM UTC 

Turns out, for whatever reason, the IDs were duplicated in the actual XML file. Why I would have done that, I cannot tell you.

 

#847706 A small solution for the Faces and Logos Issue
DJHY1
6 years ago
3 hours ago
15
Premium
By OKV 31 October 2025 - 09:54 AM UTC 

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 cd command. 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 _face suffix to each image filename. For example, 1120.png becomes 1120_face.png.

You will also need to modify your config.xml file. 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!
 

I cannot imagine why (I've been having the problem all Beta, but no matter what I do, the Brazilian Serie A never has a logo … despite apparently not having a single conflicting ID or file name.

 

#845773 Club Competion History - I'VE LOST IT
DJHY1
6 years ago
3 hours ago
15
Premium
By edgardavids8 25 October 2025 - 16:07 PM UTC 

Club > Club Site > Club History tile > Honours tile

this one?

 

Not that one. It was one that showed every single season, and the position that the team finished within said season, as per the attachment on my original post. Although, I have kind of resigned myself as to never finding it again.

#845735 Club Competion History - I'VE LOST IT
DJHY1
6 years ago
3 hours ago
15
Premium

So, when the beta first came out, I managed to find the Club Competition History screen completely by accident. Just to be more clear, it is the one where you can see every season for your team, and where they finished. Now that I am actually looking for it, I can't find it. 

#845395 FM26 Logos > Clear Cache
DJHY1
6 years ago
3 hours ago
15
Premium

A workaround for various logos clashing that I have found, is to very specifically name them as to what they are for.

#844919 FM26 3D Textures Assets
DJHY1
6 years ago
3 hours ago
15
Premium
By Orthodox 23 October 2025 - 13:45 PM UTC 

Not sure that will be possible. I think we gonna need to create new kits completely. 

Hopefully it doesn't end up being a massive hassle

 

#711843 Ultimate World Cup (Fantasy database) + (U21, U20, U19, U18 versions) [FM 23] + FM 22 links
DJHY1
6 years ago
3 hours ago
15
Premium

Just one quick question regarding this database: Will the tournament actually repeat itself, or will it simply only occur for the dates that you have specified in the post?