Title: Mikael Korpela's Replies | WordPress.org

---

# Mikael Korpela

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Speed Optimizer - The All-In-One Performance-Boosting Plugin] Combining Javascript files breaks script loading order in Jetpack](https://wordpress.org/support/topic/combining-javascript-files-breaks-script-loading-order-in-jetpack/)
 *  Thread Starter [Mikael Korpela](https://wordpress.org/support/users/simison/)
 * (@simison)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/combining-javascript-files-breaks-script-loading-order-in-jetpack/#post-18021836)
 * Meanwhile, our customers can fix the issue at their site by disabling Javascript
   combiner from Site Optimizer but that’s not great for their site’s performance.
 * They can also use following PHP script to stop combining the affected files, 
   but this is technically complicated to some customers and not something they 
   should need to do anyway:
 *     ```wp-block-code
       function jetpack_sgo_javascript_combine_exclude( $exclude_list ) {	$exclude_list[] = 'wp-dom-ready';	$exclude_list[] = 'jetpack-block-subscriptions';	return $exclude_list;}add_filter( 'sgo_javascript_combine_exclude', 'jetpack_sgo_javascript_combine_exclude' );function jetpack_sgo_javascript_combine_excluded_inline_content( $excluded_inline_content ) {	$excluded_inline_content[] = 'Jetpack_Block_Assets_Base_Url';	return $excluded_inline_content;}add_filter( 'sgo_javascript_combine_excluded_inline_content', 'jetpack_sgo_javascript_combine_excluded_inline_content' );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Malware URL in readme.txt](https://wordpress.org/support/topic/malware-url-in-readmetxt/)
 *  [Mikael Korpela](https://wordpress.org/support/users/simison/)
 * (@simison)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/malware-url-in-readmetxt/#post-6714356)
 * I don’t think this is nothing to worry about.
 * That URL has been at the readme for many years and might be the domain has expired
   or something and spammers took it over. However, now Google says there’s malware
   there. See Google’s report:
 * [https://www.google.com/transparencyreport/safebrowsing/diagnostic/index.html?hl=en-US#url=http://blog.brainhost.com/10-plugins-that-will-speed-up-your-wordpress-site/](https://www.google.com/transparencyreport/safebrowsing/diagnostic/index.html?hl=en-US#url=http://blog.brainhost.com/10-plugins-that-will-speed-up-your-wordpress-site/)
 * Here’s the report [https://www.wordfence.com](https://www.wordfence.com) plugin
   gives:
 * > /html/wp-content/plugins/w3-total-cache/readme.txt
   >  Filename: wp-content/plugins/
   > w3-total-cache/readme.txt Bad URL: [http://blog.brainhost.com/10-plugins-that-will-speed-up-your-wordpress-site/](http://blog.brainhost.com/10-plugins-that-will-speed-up-your-wordpress-site/))
   > File type: Not a core, theme or plugin file. Issue first detected: 32 mins 
   > ago. Severity: Critical Status New This file contains a suspected malware URL
   > listed on Google’s list of malware sites. Wordfence decodes base64 when scanning
   > files so the URL may not be visible if you view this file. The URL is: [http://blog.brainhost.com/10-plugins-that-will-speed-up-your-wordpress-site/](http://blog.brainhost.com/10-plugins-that-will-speed-up-your-wordpress-site/))–
   > More info available at Google Safe Browsing diagnostic page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin bar languages] problem with is_admin_bar_showing() in the frondend](https://wordpress.org/support/topic/problem-with-is_admin_bar_showing-in-the-frondend/)
 *  Plugin Author [Mikael Korpela](https://wordpress.org/support/users/simison/)
 * (@simison)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/problem-with-is_admin_bar_showing-in-the-frondend/#post-5402555)
 * Yup, I was looking into this today and found the issue. Just fixed this and pushed
   v1.1: [https://wordpress.org/plugins/admin-bar-languages/](https://wordpress.org/plugins/admin-bar-languages/)
 * Thanks for the heads up!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin bar languages] problem with is_admin_bar_showing() in the frondend](https://wordpress.org/support/topic/problem-with-is_admin_bar_showing-in-the-frondend/)
 *  Plugin Author [Mikael Korpela](https://wordpress.org/support/users/simison/)
 * (@simison)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/problem-with-is_admin_bar_showing-in-the-frondend/#post-5402467)
 * That’s interesting, thanks for the info!
 * Which WP version you’re using and does this occur with fresh install?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Enable tags screen for pages](https://wordpress.org/support/topic/enable-tags-screen-for-pages/)
 *  [Mikael Korpela](https://wordpress.org/support/users/simison/)
 * (@simison)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/enable-tags-screen-for-pages/#post-2863630)
 * You can enable tags and categories for wordpress pages with this in your theme’s
   functions.php:
 *     ```
       function my_taxonomies() {
           register_taxonomy_for_object_type('category', 'page');
           register_taxonomy_for_object_type('post_tag', 'page');
       }
       add_action('init', 'my_taxonomies');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] [Plugin: WordPress SEO by Yoast] Using Featured Image's Thumbnail for Facebook's og:image](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-using-featured-images-thumbnail-for-facebooks-ogimage/)
 *  [Mikael Korpela](https://wordpress.org/support/users/simison/)
 * (@simison)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-using-featured-images-thumbnail-for-facebooks-ogimage/#post-3061530)
 * FB is currently changing their requirements for news feed images. I’d suggest
   to change default behaviour accordingly.
 * [https://developers.facebook.com/blog/post/2013/04/03/platform-updates–operation-developer-love/](https://developers.facebook.com/blog/post/2013/04/03/platform-updates–operation-developer-love/)
 * Minimum is 200×200 (so ppl don’t use thumbnail size!) and recommendation 600×
   600, so default “medium” 300×300 is a bit too small.
 * I’d use “full” as default.

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