Status
Not open for further replies.
This suggestion has been closed. Votes are no longer accepted.
s3ponline You can manually do this by editing DragonByte Tech: vBNotifications/dbtech_notifications_settings template in your style, and replace the whole code with the following:

Code:
<form action="vbnotifs.php?do=settings&action=update" method="post" class="block">
    <h2 class="blockhead">{vb:rawphrase dbtech_notifs_notification_settings}</h2>
    
    <div class="blockbody formcontrols settings_form_border">
        <h3 class="blocksubhead">{vb:rawphrase dbtech_notifs_general_settings}</h3>
        
        <div class="section">
            <div class="blockrow">
                <label for="cb_onoff">{vb:rawphrase dbtech_notifs_receive_notifications}:</label>
                    <ul class="checkradio group rightcol">
                        <li><label><input type="radio" name="options[onoff]" value="1" {vb:var optionvalues.on} id="cb_onoff" tabindex="1" checked  /> {vb:rawphrase dbtech_notifs_receive_notifications}</label></li>
                        <li><label><input type="radio" name="options[onoff]" value="0" {vb:var optionvalues.off} id="cb_onoff_off" tabindex="1"  /> {vb:rawphrase dbtech_notifs_not_receive_notifications}</label></li>
                    </ul>
                    
                    <p class="description">{vb:rawphrase dbtech_notifs_wish_receive_notifications}</p>
            </div>
        </div>
        
        <!--DBT_PRO_START-->
        <h3 class="blocksubhead">{vb:rawphrase dbtech_notifs_receive_notifications_for}</h3>
        
        <div class="section">
            <div class="blockrow">
                <label for="cb_notifs">Notifications:</label>
                    <ul class="checkradio group rightcol">
                        {vb:raw notifbits}
                    </ul>
                    
                    <p class="description">{vb:rawphrase dbtech_notifs_choose_notifications}</p>
            </div>
        </div>
        <!--DBT_PRO_END-->
        
        <h3 class="blocksubhead">{vb:rawphrase dbtech_notifs_permanent_notifications}</h3>
        
        <div class="section">
            <div class="blockrow">
                <label for="cb_notifs">{vb:rawphrase dbtech_notifs_notifications}:</label>
                    <ul class="checkradio group rightcol">
                        {vb:raw permbits}
                    </ul>
                    
                    <p class="description">{vb:rawphrase dbtech_notifs_choose_notifications_permanent}</p>
            </div>
        </div>
        
        <!--DBT_PRO_START-->
        <!--<h3 class="blocksubhead">{vb:rawphrase dbtech_notifs_bar_styling}</h3>
        
        <div class="section">
            <div class="blockrow">
                <label for="cb_notifs">{vb:rawphrase dbtech_notifs_background_color}</label>
                    <ul class="checkradio group rightcol">
                        <li><input type="text" class="textbox" name="css[background]" value="{vb:var cssvalues.background}" /></li>
                    </ul>
                    
                    <p class="description">{vb:rawphrase dbtech_notifs_leave_blank_for_default}</p>
            </div>
        </div>
        
        <div class="section">
            <div class="blockrow">
                <label for="cb_notifs">{vb:rawphrase dbtech_notifs_text_color}</label>
                    <ul class="checkradio group rightcol">
                        <li><input type="text" class="textbox" name="css[color]" value="{vb:var cssvalues.color}" /></li>
                    </ul>
                    
                    <p class="description">{vb:rawphrase dbtech_notifs_leave_blank_for_default}</p>
            </div>
        </div>
        
        <div class="section">
            <div class="blockrow">
                <label for="cb_notifs">{vb:rawphrase dbtech_notifs_background_image}</label>
                    <ul class="checkradio group rightcol">
                        <li><input type="text" class="textbox" name="css[background_url]" value="{vb:var cssvalues.background_url}" /></li>
                    </ul>
                    
                    <p class="description">{vb:rawphrase dbtech_notifs_leave_blank_for_default}</p>
            </div>
        </div>
        
        <div class="section">
            <div class="blockrow">
                <label for="cb_notifs">{vb:rawphrase dbtech_notifs_tab_hover_background}</label>
                    <ul class="checkradio group rightcol">
                        <li><input type="text" class="textbox" name="css[hover]" value="{vb:var cssvalues.hover}" /></li>
                    </ul>
                    
                    <p class="description">{vb:rawphrase dbtech_notifs_leave_blank_for_default}</p>
            </div>
        </div>
        
        <div class="section">
            <div class="blockrow">
                <label for="cb_notifs">{vb:rawphrase dbtech_notifs_tab_hover_text}</label>
                    <ul class="checkradio group rightcol">
                        <li><input type="text" class="textbox" name="css[hover_color]" value="{vb:var cssvalues.hover_color}" /></li>
                    </ul>
                    
                    <p class="description">{vb:rawphrase dbtech_notifs_leave_blank_for_default}</p>
            </div>
        </div>-->
        <!--DBT_PRO_END-->
        
    </div>
    
    <div class="blockfoot actionbuttons settings_form_border">
        <div class="group">
            <input type="submit" class="button" value="{vb:rawphrase dbtech_notifs_save_notif_settings}" tabindex="1" accesskey="s">
            <input type="hidden" name="securitytoken" value="{vb:var bbuserinfo.securitytoken}">
        </div>
    </div>
    
</form>

This will have to be done on each style, if you ever go back to the bar version, just revert the template.
 
Last edited:
THanks Ozzy, the only reason I’m not going to do this is because of the amount of times vbnotifications needs to be updated (hopefully it keeps getting updates). This should be in by default :D
 
Status
Not open for further replies.
Back
Top