Friends,
I have tried in recent days to modify the lay-out of the pages of couples
to remove the photo in duplicity.
for married couples, there is a picture of him or her, but the picture of the couple.
I want feedback from friends and suggestions regarding the matter.
function showBlockPhoto
in templates/base/scripts/BxBaseProfileView.php
Open /templates/base/scripts/BxBaseProfileView and find this code (around line 197)
function showBlockPhoto( $iCol, $bNoDB = false )
{
$iPID = 0;
if( $iCol == 1 ) {
$iPID = $this -> _iProfileID;
$sNickName = $this -> _aProfile['NickName'];
} elseif( $iCol == 2 ) {
if( !$this -> _aProfile['Couple'] )
return;
-
Change that code to this:
function showBlockPhoto( $iCol, $bNoDB = false )
{
$iPID = 0;
if( $iCol == 1 ) {
$iPID = $this see more
anyone have answers to this?