Title: wittigdocs's Replies | WordPress.org

---

# wittigdocs

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Iptanus File Upload] Upload specific file extensions not possible](https://wordpress.org/support/topic/upload-specific-file-extensions-not-possible/)
 *  Thread Starter [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [10 years ago](https://wordpress.org/support/topic/upload-specific-file-extensions-not-possible/#post-7584957)
 * Yes, now it works to upload “forbidden” files without modifying the plugin-code.
   
   For the whitelist `uploadpatterns="*.*` did not work. But `uploadpatterns="*.*,*.
   xml` works. Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Iptanus File Upload] Assign Category](https://wordpress.org/support/topic/assign-category-2/)
 *  [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [10 years ago](https://wordpress.org/support/topic/assign-category-2/#post-7588224)
 * Maybe this is worth a try:
    [](https://wptavern.com/new-plugin-adds-the-ability-to-categorize-and-tag-attachments-in-the-wordpress-media-library)
 * `https://wptavern.com/new-plugin-adds-the-ability-to-categorize-and-tag-attachments-
   in-the-wordpress-media-library`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Iptanus File Upload] Upload specific file extensions not possible](https://wordpress.org/support/topic/upload-specific-file-extensions-not-possible/)
 *  Thread Starter [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [10 years ago](https://wordpress.org/support/topic/upload-specific-file-extensions-not-possible/#post-7584923)
 * Thank you; it worked partly but not finally.
    1. Since I sit on a theme-independent
   plugin, the functions.php is not a solution for me. I put your code into the 
   plugin main file:
 *     ```
       function dif_wp_upload_blacklist() {
       	global $wfu_extension_blacklist;
       	if (isset($wfu_extension_blacklist['xml'])) {
       		unset($wfu_extension_blacklist['xml']);
       	}}
       add_action( 'after_setup_theme', 'dif_wp_upload_blacklist' );
       ```
   
 * 2. XML files can still not uploaded as long as they are not in the `$whitelist`
   of wfu_security.php. Unfortunately the latter array is private, so the above 
   approach for the blacklist does _not_ work for the whilelist:
    `global $whitelist;
   $whitelist['xml'] = 1;` If I put ‘”xml”=>1` manually into the array in file wfu_security.
   php the upload works.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Flat Bootstrap] Old Bootstrap Version](https://wordpress.org/support/topic/old-bootstrap-version/)
 *  Thread Starter [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [11 years ago](https://wordpress.org/support/topic/old-bootstrap-version/#post-6026628)
 * Yes I think its good to publish resp provide an updated version. If you’re short
   on time (like me 🙂 good idea is publishing at Github with clear “Beta-Status-
   Tag” and the accepting pulls or accepting tickets on that version. Would be sad
   if your good work would silently die with time. Greetings from Germany
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sermon Manager] [sermons] shortcode not working at all](https://wordpress.org/support/topic/sermons-shortcode-not-working-at-all/)
 *  [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/sermons-shortcode-not-working-at-all/#post-5356266)
 * [@rboylee](https://wordpress.org/support/users/rboylee/)
    no, normally I’m not
   able to modify the churchope theme; this would be a task for the churchope theme
   to care for compatibility. What I sometimes to: locate the “wrong” features in
   the HTML debug view in the browser an do a “hide” in the custom CSS of the theme.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Flat Bootstrap] Old Bootstrap Version](https://wordpress.org/support/topic/old-bootstrap-version/)
 *  Thread Starter [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/old-bootstrap-version/#post-6026618)
 * Hi, couple of days ago Bootstrap v3.3.5 got published … containing bunches of
   fixes. What about releasing a “Flat Bootstrap 1.6 Beta” at Github and accepting
   Pull requests?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sermon Manager] [sermons] shortcode not working at all](https://wordpress.org/support/topic/sermons-shortcode-not-working-at-all/)
 *  [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/sermons-shortcode-not-working-at-all/#post-5356261)
 * The same issue here with the Churchope theme.
    Problem is that churhope introduced
   its own [sermon] shortcode in some version 2014. I solved this for me with a 
   hack: – locate the file lib\shortcode\shortcodes.php in the theme directory –
   find and comment out these to lines: // add_shortcode(‘speakers’, ‘th_speakers’);//
   add_shortcode(‘sermons’, ‘th_sermons’);
 * Sermon manager will work again.
    Problem: you need to do this again with every
   theme update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Thumbnail slideshow in sidebar](https://wordpress.org/support/topic/thumbnail-slideshow-in-sidebar/)
 *  Thread Starter [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/thumbnail-slideshow-in-sidebar/#post-5244198)
 * Thanks, works basically. Lazy load would be a nice feature to have the fisrt 
   pics fast running.
    Anyway, thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] class=”ngg-galleryoverview lots of code](https://wordpress.org/support/topic/classngg-galleryoverview-lots-of-code/)
 *  Thread Starter [wittigdocs](https://wordpress.org/support/users/wittigdocs/)
 * (@wittigdocs)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/classngg-galleryoverview-lots-of-code/#post-4030688)
 * credentials just sent
    thank you

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