delete tabs on pages

How can I delete some tabs on pages?

For example, on the upload music page there are tabs like "Failed", "Disapproved" and "Not processed"

I don't need those tabs

And with my Dutch translation it gives some problems.

The text is larger dan the tab width.

Or is it possible to leave them and change the width of the tab in the template?

I have several templates installed.

I use D7-RC2

Many thank

Quote · 21 Dec 2009

Hello, you can delete all these items  only in php code!

For example : Open  modules/boonex/sounds/classes/BxSoundsPageAlbumsMy.php


and delete all unnecessary items from this array :


var $aSystemBlocks = array(
'main' => array(
'blocks' => array('adminShort', 'my'),
'level' => 0
),
'add' => array(
'blocks' => array('add', 'my'),
'level' => 0
),
'manage' => array(
'blocks' => array('adminFull', 'my'),
'level' => 0
),
'disapproved' => array(
'blocks' => array('adminFullDisapproved', 'my'),
'level' => 0
),
'main_objects' => array(
'blocks' => array('adminAlbumShort', 'albumObjects'),
'level' => 1,
'link' => 'browse/album'
),
'edit' => array(
'blocks' => array('edit', 'albumObjects'),
'level' => 1
),
'organize' => array(
'blocks' => array('organize', 'albumObjects'),
'level' => 1
),
'add_objects' => array(
'blocks' => array('addObjects', 'albumObjects'),
'level' => 1
),
'manage_objects' => array(
'blocks' => array('manageObjects', 'albumObjects'),
'level' => 1
),
'manage_objects_disapproved' => array(
'blocks' => array('manageObjectsDisapproved', 'albumObjects'),
'level' => 1
),
'manage_objects_not_processed' => array(
'blocks' => array('manageObjectsNotProcessed', 'albumObjects'),
'level' => 1
),
'manage_objects_failed' => array(
'blocks' => array('manageObjectsFailed', 'albumObjects'),
'level' => 1
),
);

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 21 Dec 2009
 
 
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.