Tutorial [TUT vBulletin] How to remove branding free for DBSEO, VBSHOUT, VBOPTIMISE, ADVANCED THANK YOU

  • Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Radio

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,466
    7,708
    321
    localhost
    VBSHOUT

    find dbtech/vbshout/hooks/global_start.php

    look for this part of code and delete it:

    Code:
    /*DBTECH_BRANDING_START*/
    // Show branding or not
    $show['dbtech_vbshout_producttype'] = (VBSHOUT::$isPro ? ' (Pro)' : ' (Lite)');
    
    if (!$show['_dbtech_branding_override'])
    {
        $brandingVariables = array(
            'flavour'             => 'Shoutbox provided by ',
            'productid'         => 2,
            'utm_source'         => str_replace('www.', '', htmlspecialchars_uni($_SERVER['HTTP_HOST'])),
            'utm_content'         => (VBSHOUT::$isPro ? 'Pro' : 'Lite'),
            'referrerid'         => $vbulletin->options['dbtech_vbshout_referral'],
            'title'             => 'vBShout',
            'displayversion'     => $vbulletin->options['dbtech_vbshout_displayversion'],
            'version'             => '6.2.18',
            'producttype'         => $show['dbtech_vbshout_producttype']
        );
    
        $str = $brandingVariables['flavour'] . '
            <a rel="nofollow" href="https://www.dragonbyte-tech.com/vbecommerce.php' . ($brandingVariables['productid'] ? '?productid=' . $brandingVariables['productid'] . '&do=product&' : '?') . 'utm_source=' . $brandingVariables['utm_source'] . '&utm_campaign=product&utm_medium=' . urlencode(str_replace(' ', '+', $brandingVariables['title'])) . '&utm_content=' . $brandingVariables['utm_content'] . ($brandingVariables['referrerid'] ? '&referrerid=' . $brandingVariables['referrerid'] : '') . '" target="_blank">' . $brandingVariables['title'] . ($brandingVariables['displayversion'] ? ' v' . $brandingVariables['version'] : '') . $brandingVariables['producttype'] . '</a> -
            <a rel="nofollow" href="https://www.dragonbyte-tech.com/?utm_source=' . $brandingVariables['utm_source'] . '&utm_campaign=site&utm_medium=' . urlencode(str_replace(' ', '+', $brandingVariables['title'])) . '&utm_content=' . $brandingVariables['utm_content'] . ($brandingVariables['referrerid'] ? '&referrerid=' . $brandingVariables['referrerid'] : '') . '" target="_blank">vBulletin Mods &amp; Addons</a> Copyright &copy; ' . date('Y') . ' DragonByte Technologies Ltd.';
        $vbulletin->options['copyrighttext'] = (trim($vbulletin->options['copyrighttext']) != '' ? $str . '<br />' . $vbulletin->options['copyrighttext'] : $str);
    }
    /*DBTECH_BRANDING_END*/
     
    Last edited by a moderator:

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,466
    7,708
    321
    localhost
    DBSEO

    find in dbtech/dbseo/hooks/parse_templates.php

    look for this part of code and delete it:

    Code:
        /*DBTECH_BRANDING_START*/
        if (!$show['_dbtech_branding_override'])
        {
            $brandingVariables = array(
                'flavour'             => 'Search Engine Optimisation provided by ',
                'productid'         => 303,
                'utm_source'         => str_replace('www.', '', htmlspecialchars_uni($_SERVER['HTTP_HOST'])),
                'utm_content'         => (DBSEO::$isPro ? 'Pro' : 'Lite'),
                'referrerid'         => $vbulletin->options['dbtech_dbseo_referral'],
                'title'             => 'DragonByte SEO',
                'displayversion'     => $vbulletin->options['dbtech_dbseo_displayversion'],
                'version'             => '2.0.42',
                'producttype'         => $show['dbtech_dbseo_producttype']
            );
    
            $str = $brandingVariables['flavour'] . '
                <a rel="nofollow" href="https://www.dragonbyte-tech.com/vbecommerce.php' . ($brandingVariables['productid'] ? '?productid=' . $brandingVariables['productid'] . '&do=product&' : '?') . 'utm_source=' . $brandingVariables['utm_source'] . '&utm_campaign=product&utm_medium=' . urlencode(str_replace(' ', '+', $brandingVariables['title'])) . '&utm_content=' . $brandingVariables['utm_content'] . ($brandingVariables['referrerid'] ? '&referrerid=' . $brandingVariables['referrerid'] : '') . '" target="_blank">' . $brandingVariables['title'] . ($brandingVariables['displayversion'] ? ' v' . $brandingVariables['version'] : '') . $brandingVariables['producttype'] . '</a> -
                <a rel="nofollow" href="https://www.dragonbyte-tech.com/?utm_source=' . $brandingVariables['utm_source'] . '&utm_campaign=site&utm_medium=' . urlencode(str_replace(' ', '+', $brandingVariables['title'])) . '&utm_content=' . $brandingVariables['utm_content'] . ($brandingVariables['referrerid'] ? '&referrerid=' . $brandingVariables['referrerid'] : '') . '" target="_blank">vBulletin Mods &amp; Addons</a> Copyright &copy; ' . date('Y') . ' DragonByte Technologies Ltd.';
            $vbulletin->options['copyrighttext'] = (trim($vbulletin->options['copyrighttext']) != '' ? $str . '<br />' . $vbulletin->options['copyrighttext'] : $str);
        }
        /*DBTECH_BRANDING_END*/
     

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,466
    7,708
    321
    localhost
    VBOPTIMISE

    find dbtech/vboptimise/hooks/global_start.php

    look for this part of code and delete it:

    Code:
    /*DBTECH_BRANDING_START*/
    // Show branding or not
    $show['vboptimise_producttype'] = ' (Lite)';
    /*DBTECH_PRO_START*/
    $show['vboptimise_producttype'] = ' (Pro)';
    /*DBTECH_PRO_END*/
    
    if (!$show['_dbtech_branding_override'])
    {
        $brandingVariables = array(
            'flavour'             => 'vBulletin Optimisation provided by ',
            'productid'         => 1,
            'utm_source'         => str_replace('www.', '', htmlspecialchars_uni($_SERVER['HTTP_HOST'])),
            'utm_content'         => ($show['vboptimise_producttype'] != ' (Pro)' ? 'Lite' : 'Pro'),
            'referrerid'         => $vbulletin->options['vbo_referral'],
            'title'             => 'vB Optimise',
            'displayversion'     => $vbulletin->options['vbo_displayversion'],
            'version'             => '2.7.1',
            'producttype'         => $show['vboptimise_producttype']
        );
    
        $str = $brandingVariables['flavour'] . '
            <a rel="nofollow" href="https://www.dragonbyte-tech.com/vbecommerce.php' . ($brandingVariables['productid'] ? '?productid=' . $brandingVariables['productid'] . '&do=product&' : '?') . 'utm_source=' . $brandingVariables['utm_source'] . '&utm_campaign=product&utm_medium=' . urlencode(str_replace(' ', '+', $brandingVariables['title'])) . '&utm_content=' . $brandingVariables['utm_content'] . ($brandingVariables['referrerid'] ? '&referrerid=' . $brandingVariables['referrerid'] : '') . '" target="_blank">' . $brandingVariables['title'] . ($brandingVariables['displayversion'] ? ' v' . $brandingVariables['version'] : '') . $brandingVariables['producttype'] . '</a> -
            <a rel="nofollow" href="https://www.dragonbyte-tech.com/?utm_source=' . $brandingVariables['utm_source'] . '&utm_campaign=site&utm_medium=' . urlencode(str_replace(' ', '+', $brandingVariables['title'])) . '&utm_content=' . $brandingVariables['utm_content'] . ($brandingVariables['referrerid'] ? '&referrerid=' . $brandingVariables['referrerid'] : '') . '" target="_blank">vBulletin Mods &amp; Addons</a> Copyright &copy; ' . date('Y') . ' DragonByte Technologies Ltd.';
        $vbulletin->options['copyrighttext'] = (trim($vbulletin->options['copyrighttext']) != '' ? $str . '<br />' . $vbulletin->options['copyrighttext'] : $str);
    }
    /*DBTECH_BRANDING_END*/
     
    Last edited by a moderator:

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,466
    7,708
    321
    localhost
    ADVANCED POST THANK YOU HACK

    find dbtech/thanks/hooks/global_start.php
    look for this part of code and delete it:

    Code:
    /*DBTECH_BRANDING_START*/
    // Show branding or not
    $show['dbtech_thanks_producttype'] = (THANKS::$isPro ? ' (Pro)' : ' (Lite)');
    
    if (in_array(THIS_SCRIPT, array('thanks', 'showthread', 'blog', 'dbtech_gallery')) AND !$show['_dbtech_branding_override'])
    {
        $brandingVariables = array(
            'flavour'             => 'Feedback Buttons provided by ',
            'productid'         => 22,
            'utm_source'         => str_replace('www.', '', htmlspecialchars_uni($_SERVER['HTTP_HOST'])),
            'utm_content'         => (THANKS::$isPro ? 'Pro' : 'Lite'),
            'referrerid'         => $vbulletin->options['dbtech_thanks_referral'],
            'title'             => 'Advanced Post Thanks / Like',
            'displayversion'     => $vbulletin->options['dbtech_thanks_displayversion'],
            'version'             => '3.6.3',
            'producttype'         => $show['dbtech_thanks_producttype']
        );
    
        $str = $brandingVariables['flavour'] . '
            <a rel="nofollow" href="https://www.dragonbyte-tech.com/vbecommerce.php' . ($brandingVariables['productid'] ? '?productid=' . $brandingVariables['productid'] . '&do=product&' : '?') . 'utm_source=' . $brandingVariables['utm_source'] . '&utm_campaign=product&utm_medium=' . urlencode(str_replace(' ', '+', $brandingVariables['title'])) . '&utm_content=' . $brandingVariables['utm_content'] . ($brandingVariables['referrerid'] ? '&referrerid=' . $brandingVariables['referrerid'] : '') . '" target="_blank">' . $brandingVariables['title'] . ($brandingVariables['displayversion'] ? ' v' . $brandingVariables['version'] : '') . $brandingVariables['producttype'] . '</a> -
            <a rel="nofollow" href="https://www.dragonbyte-tech.com/?utm_source=' . $brandingVariables['utm_source'] . '&utm_campaign=site&utm_medium=' . urlencode(str_replace(' ', '+', $brandingVariables['title'])) . '&utm_content=' . $brandingVariables['utm_content'] . ($brandingVariables['referrerid'] ? '&referrerid=' . $brandingVariables['referrerid'] : '') . '" target="_blank">vBulletin Mods &amp; Addons</a> Copyright &copy; ' . date('Y') . ' DragonByte Technologies Ltd.';
        $vbulletin->options['copyrighttext'] = (trim($vbulletin->options['copyrighttext']) != '' ? $str . '<br />' . $vbulletin->options['copyrighttext'] : $str);
    }
    /*DBTECH_BRANDING_END*/
     
    Last edited by a moderator: