Hide group number text on default raid frames

Does anyone know how to hide the group number text frame on the default raid frames?

Picture: i.imgur. com/lGVmKx7.png

I know you can uncheck keep groups together but I like the uniformity when they are.

Bump.

The frame in question is CompactRaidGroupXTitle
X being the group number 1-8

At a guess as I don’t use the default raid frames you can try pasting the following into the website addon.bool.no to create a small addon that should hide the text as the group frames are created.

hooksecurefunc("CompactRaidGroup_GenerateForGroup", function(groupIndex)
	local frame = _G["CompactRaidGroup"..groupIndex]
	if frame then
		frame.title:SetText("")
	end
end)
1 Like

That works perfectly. Thanks so much.

I just found this and it’s an amazing fix, do you know of a way to replicate this to get rid of the “party” text on the default party frames?

1 Like