Remove Profile Photo Block 6.1
While I have some challenges with the new profile builder, I understand it conceptually. I've read others' posts regarding some potential "bugs." One problem I have is that the member's Photo Block always appears in the left column of their profile page, even though I don't have that block in the builder! This happens whether or not I have the "New Gallery Feature for Profile Photos" setting on in Advanced Settings.
Thoughts?
line 82: function getBlockCode_Topest($iColumn)... and is unmovable from the Admin Panel (but you can try to edit the script...)
the 3rd column mysterious Photo Block on top is doing my head in as well.
I would love to make the profile photo block smaller to.
If you want to remove it then you can change :
function getBlockCode_Topest($iColumn) {
return '<div class="page_block_container">' . $this->oProfileV->showBlockPhoto($iColumn, true) . '</div>';
}
to :
function getBlockCode_Topest() {
return '<div class="page_block_container">' . $this->oProfileV->showBlockPhoto('', true) . '</div>';
}
Not the most elegant way of doing things but then again it's not very elegant see more
function getBlockCode_Topest($iColumn) {
return '<div class="page_block_container"></div>';
}