Title: dhewer's Replies | WordPress.org

---

# dhewer

  [  ](https://wordpress.org/support/users/dhewer/)

 *   [Profile](https://wordpress.org/support/users/dhewer/)
 *   [Topics Started](https://wordpress.org/support/users/dhewer/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dhewer/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dhewer/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dhewer/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dhewer/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dhewer/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Nextend Accordion Menu] Specify menu](https://wordpress.org/support/topic/specify-menu/)
 *  Thread Starter [dhewer](https://wordpress.org/support/users/dhewer/)
 * (@dhewer)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/specify-menu/#post-6271812)
 * Nevermind, I figured it out.
 * In case anyone else is confused:
    Edit the accordion menu At the top, under Basic
   Parameters, Type [WordPress], click the Configure button.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TinyMCE Visual Editor Comment] Add media strips image tag](https://wordpress.org/support/topic/add-media-strips-image-tag/)
 *  Thread Starter [dhewer](https://wordpress.org/support/users/dhewer/)
 * (@dhewer)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/add-media-strips-image-tag/#post-5571638)
 * Okay I was eventually able to fix the problem of the img tab being stripped by
   adding the following to my child theme’s functions.php file:
 *     ```
       global $allowedtags;
       $allowedtags['img'] = array(
       	'alt' => array (),
       	'align' => array (),
       	'border' => array (),
       	'class' => array (),
       	'height' => array (),
       	'hspace' => array (),
       	'longdesc' => array (),
       	'vspace' => array (),
       	'src' => array (),
       	'style' => array (),
       	'width' => array (),
       );
       ```
   
 * Now the only remaining issue is that when users try to upload an image via the“
   Upload Files” tab using the “Select Images” button, the upload always fails with
   an error message: “An error occurred in the upload. Please try again later.” 
   However, uploading the same file in the same way from the Add New Post screen
   works without any errors. So the problem is not a permissions issue or a file
   storage issue or something like that, it seems to be something to do with the
   embedded TinyMCE for the comments?
 * Any ideas/help would be appreciated. This is in WP4.0.1. Thanks!

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