UPDATE:
- Added clothes blacklisting. Blacklisted clothes will not appear on the lists in ‘apparel’ section.
 
This is disabled by default. You can enable it by uncommenting ‘client/blacklist.lua’ in fxmanifest.
As an example blacklist file I added all the clothes combinations in this EUP. You can blacklist any clothes component or prop by editing this file.
The file might be slightly confusing to read, because I wanted to use table indexes for fast lookup.
Example entry:
[component/prop] = 
{
    [drawable] = 
    {
        [texture] = true,
        [texture2] = true,
        -- more textures for this drawable here
    },
    -- more drawables for this component/prop here
}
-- more components/props here