simple & extended?

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!!
Quote · 17 Jul 2012

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....
Quote · 17 Jul 2012

 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!!
Quote · 17 Jul 2012

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 */
    visibility:hidden;
}

http://pkforum.dolphinhelp.com
Quote · 17 Jul 2012

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!!
Quote · 18 Jul 2012

 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!!
Quote · 18 Jul 2012

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....
Quote · 18 Jul 2012

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!!
Quote · 18 Jul 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.