I am unable to see my dc credits on the forum heading.
-anandcoral
Hello dear Anand, if you just want to return the functionality/view without leaving the current forum page, you could use any of the following javascript links.
Return direct DonationCrediits view on the header:
javascript:document.querySelector('#upper_section > div.user > ul > li.responsive2:nth-child(3)').classList.remove('responsive2');void(0);;
Return DonationCredits and Unread topics:
javascript:document.querySelectorAll('#upper_section > div.user > ul > li.responsive2:nth-child(3), #upper_section > div.user > ul > li.responsive2:nth-child(5)').forEach(el => el.classList.remove('responsive2'));void(0);
Return
all responsive links!
javascript:Array.from(document.querySelectorAll('#upper_section *')).forEach(el => el.classList && Array.from(el.classList).forEach(cl => cl.includes('responsive') && el.classList.remove(cl)));void(0);
Remember: a javascript link with your favorite approach can be added to your bookmarks bar for easy access (one click).

Hope this helps / gives you more options!
🤗
Vic