Title: Thomas Jaggi's Replies | WordPress.org

---

# Thomas Jaggi

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Visual editor not respecting tiny_mce_before_init filter in 3.9](https://wordpress.org/support/topic/visual-editor-not-respecting-tiny_mce_before_init-filter-in-39/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [12 years ago](https://wordpress.org/support/topic/visual-editor-not-respecting-tiny_mce_before_init-filter-in-39/#post-4821434)
 * In my case:
 * Old:
 *     ```
       $init['theme_advanced_buttons1'] = 'bold,italic,underline,|,bullist,numlist,blockquote,|,link,unlink,|,spellchecker,fullscreen,|,formatselect,styleselect';
       $init['theme_advanced_blockformats'] = 'h2, h3';
       $init['theme_advanced_styles'] = 'Icon Mail=icon-mail, Icon Phone=icon-phone, Icon Location=icon-location';
       ```
   
 * New:
 *     ```
       $init['toolbar1'] = 'bold,italic,underline,|,bullist,numlist,blockquote,|,link,unlink,|,spellchecker,fullscreen,|,formatselect,styleselect';
       $init['block_formats'] = 'Header 2=h2;Header 3=h3';
       $init['style_formats'] = '[
       	{title: "Icons", items: [
       		{title: "Mail", inline: "span", classes: "icon-mail"},
       		{title: "Phone", inline: "span", classes: "icon-phone"},
       		{title: "Location", inline: "span", classes: "icon-location"}
       	]}
       ]';
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [comment_reply_link not moving my form?](https://wordpress.org/support/topic/comment_reply_link-not-moving-my-form/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/comment_reply_link-not-moving-my-form/#post-2286954)
 * Adding the comment’s ID as a second argument to “(get_)comment_reply_link” fixed
   the issue in my case:
    `$reply = get_comment_reply_link(array_merge($args, array('
   depth' => $depth, 'max_depth' => $args['max_depth'])), $comment->comment_ID);`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Drain Hole] Drain Hole and File Corruption after download…](https://wordpress.org/support/topic/drain-hole-and-file-corruption-after-download/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/drain-hole-and-file-corruption-after-download/#post-2221930)
 * I had an issue with corrupted files as well.
    Adding “ob_end_clean();” before
   outputting the headers fixed it.
 * drain-hole/models/file.php:
 * Before:
    `header ("Content-Type: $mime");`
 * After:
 *     ```
       ob_end_clean();
       header ("Content-Type: $mime");
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to hide widget title when empty?](https://wordpress.org/support/topic/how-to-hide-widget-title-when-empty/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/how-to-hide-widget-title-when-empty/#post-2169443)
 * Having the same problem.
 * To remove the empty line and margin you could use the following workaround:
    
   functions.php:
 *     ```
       function widget_empty_title($output='') {
       	if ($output == '') {
       		return '<span class="empty">&nbsp;</span>';
       	}
       	return $output;
       }
       add_filter('widget_title', 'widget_empty_title');
       ```
   
 * CSS:
 *     ```
       .widget .empty {
       	display: block;
       	height: 1em;
       	margin-bottom: -2em; /* Assuming the h1 has a margin-bottom of 1em and the line-height is 1 */
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pronamic Google Maps] [Plugin: Pronamic Google Maps] Load script only on pages (post types) with maps?](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/#post-2066053)
 * Great!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pronamic Google Maps] [Plugin: Pronamic Google Maps] Load script only on pages (post types) with maps?](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/#post-2066042)
 * I guess Google just assumes that a map should load as early as possible. But 
   as far as I know it works just fine if you include the scripts at the end of 
   your markup.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pronamic Google Maps] [Plugin: Pronamic Google Maps] Load script only on pages (post types) with maps?](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [14 years, 11 months ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/#post-2066040)
 * Scribu presents some nice solutions: [http://scribu.net/wordpress/optimal-script-loading.html](http://scribu.net/wordpress/optimal-script-loading.html)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pronamic Google Maps] [Plugin: Pronamic Google Maps] Load script only on pages (post types) with maps?](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [14 years, 12 months ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/#post-2066033)
 * Couldn’t it be part of the map rendering?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pronamic Google Maps] [Plugin: Pronamic Google Maps] Load script only on pages (post types) with maps?](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [15 years ago](https://wordpress.org/support/topic/plugin-pronamic-google-maps-load-script-only-on-pages-post-types-with-maps/#post-2066016)
 * +1
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Query Multiple Taxonomies] [Plugin: Taxonomy Drill-Down] When using drop down box, put text in the empty box](https://wordpress.org/support/topic/plugin-taxonomy-drill-down-when-using-drop-down-box-put-text-in-the-empty-box/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [15 years ago](https://wordpress.org/support/topic/plugin-taxonomy-drill-down-when-using-drop-down-box-put-text-in-the-empty-box/#post-2014716)
 * Try <option value=””>-select all-</option> instead.
    Worked in my case, but could
   be browser dependant (only tested in Chrome).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Fields] [Plugin: Simple Fields] Drag and drop images not working](https://wordpress.org/support/topic/plugin-simple-fields-drag-and-drop-images-not-working/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-simple-fields-drag-and-drop-images-not-working/#post-1720402)
 * I don’t really know what you mean by dragging and dropping images, but I experienced
   an issue with sorting field groups due to the handle being placed outside the
   draggable element (URL: action=edit-field-group). I repositioned the handle and
   it worked fine.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Tiger Style Administration – Code Editor Broken?](https://wordpress.org/support/topic/tiger-style-administration-code-editor-broken/)
 *  [Thomas Jaggi](https://wordpress.org/support/users/backflip/)
 * (@backflip)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/tiger-style-administration-code-editor-broken/#post-535793)
 * You can fix it by adding this to tiger.css:
 *     ```
       #quicktags input {
       	float: none;
       	display: inline;
       }
       ```
   

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