How to hide item from showing in quick guide area in HCP

This guide shows how to  hide some item from showing in quick guide area in HCP (for the NewDefault theme)


Copy view from NewDefault theme to custom one

On GUI box, copy view HostingControlPanel\Themes\NewDefault\Views\Dashboard\Dashboard\_IndexScriptsCustom.ascx to the custom theme and add this content to the end of the file.

E.g.: for hiding statistic

<script>$('[href="#qg-stat"]').parent().hide()</script>

To find out which is href for the desired item,
right click on any of the tabs in the quick guide and inspect element and replace #qg-stats in the workaround snippet with whatever is in the href for a tag there.