Sharepoint - How can I get rid of the columns header when the style 'Boxed' was selected?
Probably the most simple way to hide View header would be to use CSS
1 Add Content Editor web part on View page (located under Media & Content category)
2 Insert the following code into Content
<style type="text/css">
.ms-viewheadertr { display:none; }
</style>
To hide specific WebPart's column headers
#WebPartWPQ6 .ms-viewheadertr
{
display: none;
}
.... where replace WebPartWPQn
with your web part ID.