How to disable DND dropdown

Hey,

Can someone please help me. What file do I edit to disable DND in the drop down menu?

We are on the latest version.

With thanks

Comments

  • In index.html you have something like this:

    <div style='float: left; padding-top: 10px;'>
                <select id='presence' name='presence' onChange='setState(this);'>
    

    change it to:
    <div style='float: left; padding-top: 10px; display:none;'>
                <select id='presence' name='presence' onChange='setState(this);'>
    
Sign In or Register to comment.