How do i toggle Objective Tracker on or off?

Anyone know?

I could have sworn that this ability was available an expansion or two ago.

Untracking all your quests will hide it. You can also minimize it with the button in the top right. Can also hide it entirely with addons.

I use the below in a macro. Not my creation, something I saw posted a while back.

/run local t=ObjectiveTrackerFrame if t:IsShown()then t:Hide()else t:Show()end

This macro will toggle the entire frame on and off:

/run local t=ObjectiveTrackerFrame if t:IsShown()then t:Hide()else t:Show()end

This macro will collapse/expand it:

/run local o=ObjectiveTrackerFrame if o.isCollapsed then o:SetCollapsed(false) else o:SetCollapsed(true) end

Alternatively, SneekeeMods has an option to auto-collapse at login and to hide it whenever you enter combat. If you want it to stay hidden all the time, I could probably add a setting for that.
https://www.curseforge.com/wow/addons/sneekee-mods

Original Post: