Title: HTML Button Not Working/Disabled
Last modified: August 19, 2016

---

# HTML Button Not Working/Disabled

 *  [arvinlagonoy](https://wordpress.org/support/users/arvinlagonoy/)
 * (@arvinlagonoy)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/html-button-not-workingdisabled/)
 * Anyone knows how to set the disabled HTML button? I Cant post new blog and video
   because the HTML button is disable and not working. Please help. My Site is [Digital Shots Video Production](http://digitalshots.biz)
   Posted by Philippine Wedding Videographer Arvin and Maru

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/html-button-not-workingdisabled/#post-1279102)
 * Have you tried:
 * – deactivating all plugins to see if this resolves the problem? If this works,
   re-activate the plugins one by one until you find the problematic plugin(s).
 * – switching to the default theme to rule out any theme-related problems?
 * – [resetting the plugins folder](http://codex.wordpress.org/FAQ_Troubleshooting#How_to_deactivate_all_plugins_when_not_able_to_access_the_administrative_menus.3F)
   by FTP or phpMyAdmin? Sometimes, an apparently inactive plugin can still cause
   problems.
 *  [antmeeks](https://wordpress.org/support/users/antmeeks/)
 * (@antmeeks)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/html-button-not-workingdisabled/#post-1279476)
 * The WYSIWYG editor can loose functionality if you deregister the WordPress default
   jQuery via:
 * `wp_deregister_script( 'jquery' );`
 * In fact a lot of screwy things can happen to the admin when you do this. However,
   lot’s of us want to use our own version of jQuery for our themes / plugins. The
   solution is to deregister the default jQuery _only if the admin is not active_.
   To do this, put the following in your theme’s functions.php file:
 *     ```
       if(!is_admin()) {
          wp_deregister_script( 'jquery' );
          wp_register_script('jquery', '/your/server/path/to/jquery.js');
       }
       ```
   
 * Now, you can put
 * `wp_enqueue_script('jquery');`
 * in your header.php file and it will call your preferred jQuery version for your
   theme, but the admin will utilize the default jQuery as it’s designers intended.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘HTML Button Not Working/Disabled’ is closed to new replies.

## Tags

 * [html](https://wordpress.org/support/topic-tag/html/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 3 participants
 * Last reply from: [antmeeks](https://wordpress.org/support/users/antmeeks/)
 * Last activity: [15 years, 10 months ago](https://wordpress.org/support/topic/html-button-not-workingdisabled/#post-1279476)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
