Status
Not open for further replies.

Emeralda

New member
9e60b4a545844ec08b53bca.png


I have the thread tags and quote mentions turned off everywhere, but the tabs are still there taking too much space. How to remove them?
 
Remember DBT does not support customizations to their products. So if it does break something it will not be supported. You can always undue the changes by re uploading the product files.

In your ftp navigate to dbtech/usertag/hooks and look for the file: member_build_blocks_start.php

Once you open that you should see this:

Code:
<?php

// Fetch the profile blocks we need
require_once(DIR . '/dbtech/usertag/includes/class_profileblock.php');

$blocklist['usertags'] = array(
    'class' => 'UserTagging_UserTags',
    'title' => $vbphrase['dbtech_usertag_threadtags'],
    'options' => array(
        'perpage' => $vbulletin->GPC['perpage'],
        'pagenumber' => $vbulletin->GPC['pagenumber']
    ),
    'hook_location' => (intval($vbulletin->versionnumber) == 3 ? 'profile_left_last' : 'profile_tabs_last')
);

$blocklist['mentions'] = array(
    'class' => 'UserTagging_Mentions',
    'title' => $vbphrase['dbtech_usertag_mentions'],
    'options' => array(
        'perpage' => $vbulletin->GPC['perpage'],
        'pagenumber' => $vbulletin->GPC['pagenumber']
    ),
    'hook_location' => (intval($vbulletin->versionnumber) == 3 ? 'profile_left_last' : 'profile_tabs_last')
);

$blocklist['quotes'] = array(
    'class' => 'UserTagging_Quotes',
    'title' => $vbphrase['dbtech_usertag_quotes'],
    'options' => array(
        'perpage' => $vbulletin->GPC['perpage'],
        'pagenumber' => $vbulletin->GPC['pagenumber']
    ),
    'hook_location' => (intval($vbulletin->versionnumber) == 3 ? 'profile_left_last' : 'profile_tabs_last')
);

$show['vb4compat'] = version_compare($vbulletin->versionnumber, '4.0.8', '>=');
$headinclude .= vB_Template::create('dbtech_usertag_member_css')->render();
?>

Now change that file to this: Remember to save it.

Code:
<?php

// Fetch the profile blocks we need
require_once(DIR . '/dbtech/usertag/includes/class_profileblock.php');



$blocklist['mentions'] = array(
    'class' => 'UserTagging_Mentions',
    'title' => $vbphrase['dbtech_usertag_mentions'],
    'options' => array(
        'perpage' => $vbulletin->GPC['perpage'],
        'pagenumber' => $vbulletin->GPC['pagenumber']
    ),
    'hook_location' => (intval($vbulletin->versionnumber) == 3 ? 'profile_left_last' : 'profile_tabs_last')
);

$show['vb4compat'] = version_compare($vbulletin->versionnumber, '4.0.8', '>=');
$headinclude .= vB_Template::create('dbtech_usertag_member_css')->render();
?>
 
Glad to hear it. Remember though if you update the product, you will have to make that change again, unless the options are there to turn those off in the next product update.
 
Status
Not open for further replies.

Legacy Advanced User Tagging

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
2,502
Customer rating
0.00 star(s) 0 ratings
Back
Top