how can i get rid of the 'simple' and 'extended' tabs that are shown on the my friends page ( viewFriends.php)?
cheers,
Charlie
how can i get rid of the 'simple' and 'extended' tabs that are shown on the my friends page ( viewFriends.php)?
cheers,
Charlie You Creature!! |
seems like you don't like those tabs :P go to inc/classes/BxDolFriendsPageView.php at line 265 comment it out return array( $sOutputHtml . $sEmpty, /*$aToggleEllements*/ ); done. Enjoy :) so much to do.... |
Haha i hate them to be fair, they do my head in!!! cheers for that bit of help bud, worked a treat :)
Cheers,
Charlie
seems like you don't like those tabs :P go to inc/classes/BxDolFriendsPageView.php at line 265 comment it out return array( $sOutputHtml . $sEmpty, /*$aToggleEllements*/ ); done. Enjoy :)
You Creature!! |
Or you can use CSS to hide them. In "/templates/base/css/common.css" add code specific to the div tag that contains those buttons. Mine looks like this... div#dbTopMenu135.dbTopMenu { /* hides 'simple' & 'extended' tab buttons on viewFriends.php */ http://pkforum.dolphinhelp.com |
sorry to be a pain in the rear end but where would i need to go to get rid of 'all activity, content updates, profiles updates' tab part from the spy activity page?
cheers
Charlie You Creature!! |
Also where to get rid of those 'Edit' tabs you see on the profile blocks when viewing your own profile?
sorry to be a pain in the rear end but where would i need to go to get rid of 'all activity, content updates, profiles updates' tab part from the spy activity page?
cheers
Charlie
You Creature!! |
hmm! okay i am sure you hate them :D for spy module go to modules/boonex/spy/classes/BxSpyModules.php at line 709, comment this out return array($sOutputCode, /*$aDBTopMenu,*/ $sPaginate); for profile blocks go to templates/base/scripts/BxBaseProfileView.php at line 224 and comment this out return array( '<div class=" bx_sys_default_padding">' . $sRet . '</div>', /*array( _t('_Edit') => array( //'caption' => _t('_Edit'), 'href' => 'pedit.php?ID=' . $this->_iProfileID, 'dynamicPopup' => false, 'active' => $this->bPFEditable, ), ),*/ array(), '', ); done. Enjoy again :) so much to do.... |
Once again bud you have come to my rescue haha, that all worked :) and yes i HATE them!! lol
cheers,
Charlie
hmm! okay i am sure you hate them :D for spy module go to modules/boonex/spy/classes/BxSpyModules.php at line 709, comment this out return array($sOutputCode, /*$aDBTopMenu,*/ $sPaginate); for profile blocks go to templates/base/scripts/BxBaseProfileView.php at line 224 and comment this out return array( '<div class=" bx_sys_default_padding">' . $sRet . '</div>', /*array( _t('_Edit') => array( //'caption' => _t('_Edit'), 'href' => 'pedit.php?ID=' . $this->_iProfileID, 'dynamicPopup' => false, 'active' => $this->bPFEditable, ), ),*/ array(), '', ); done. Enjoy again :)
You Creature!! |