The native function BlzHideOriginFrames(true) hides part of the default UI, including the string simple frame used to display Fps/Apm/Ping. Many custom maps used script that enabled visibility the ResourceBarFrame to enable the display of this information. A typical solution:
BlzHideOriginFrames(true) -- Here we have hidden the origin frames, including fps/ping/apm string
local resourceBarFrame = BlzGetFrameByName("ResourceBarFrame", 0)
BlzFrameSetVisible(resourceBarFrame, true) -- Here we show the ResourceBarFrame, as well as the related fps/ping/apm string
With the release of the new patch, this script stopped working, i.e. the Fps/Apm/Ping string (and apparently entire resource bar) does not return back after hiding origin frames. Could you please roll back this change, whatever it was, so that we do not lose backwards compatibility with a bunch of good custom maps?