Hide Title of a Page
Add a jquery snippet to hide the title so it still exists in the HTML for search engines, but won't be displayed in the browser.
<script>
/* jquery snippet to hide the page title so it's still searchable, but invisible to end users */
$('#poc header h2').css({ "position": "absolute", "top": "-1000px" });
</script>