Title: hm_u's Replies | WordPress.org

---

# hm_u

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Basic Google Maps Placemarks] Tiles broken for High DPI screen](https://wordpress.org/support/topic/tiles-broken-for-high-dpi-screen/)
 *  Thread Starter [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/tiles-broken-for-high-dpi-screen/#post-9900380)
 * Thanks for your feedback, I’ll investigate!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Basic Google Maps Placemarks] Tiles broken for High DPI screen](https://wordpress.org/support/topic/tiles-broken-for-high-dpi-screen/)
 *  Thread Starter [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/tiles-broken-for-high-dpi-screen/#post-9899129)
 * Damn it, you’re right… Your test examples work. So it means it comes from my 
   theme. Sorry for the troubles! I’ve looked for other calls to the Maps API but
   nothing showed up. Any ideas what kind of CSS could cause that? Also, I know 
   you can’t spend time debugging people’s website, so no worries.
 * Thanks!
    Manu
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Basic Google Maps Placemarks] Tiles broken for High DPI screen](https://wordpress.org/support/topic/tiles-broken-for-high-dpi-screen/)
 *  Thread Starter [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/tiles-broken-for-high-dpi-screen/#post-9897748)
 * Hi,
    I’ve just found out you can simulate it on any screen. I tried on a 1080p
   screen and then went into Chrome developer mode, “Toggle device toolbar”, set
   the resolution to 5120 x 2880 (5K iMac) and reload the page ([see here](https://imgur.com/a/1zTcf)).
   But then I tried setting to 1920×1080 and it’s also broken ([see here](https://imgur.com/a/YnhrZ),
   note that the simulated 1080p is rescaled to fit into the browser windows). My
   feeling is the problem comes from the rescaling and not the resolution itself(
   because on a high DPI screen some rescaling happens so that text and stuff are
   easy to read). Let me know if that helps. Thanks! Manu
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Youtube Channel Gallery] Is there Pagination?](https://wordpress.org/support/topic/is-there-pagination/)
 *  [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/is-there-pagination/#post-5343233)
 * Hi,
    Sorry it works ! The cache must have updated or something like that. Thanks!
   Best, Manu
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-SpamShield] jscripts.php slowing page loading](https://wordpress.org/support/topic/jscriptsphp-slowing-page-loading/)
 *  Thread Starter [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/jscriptsphp-slowing-page-loading/#post-5475897)
 * Thanks for the detailed answer! I’ve been doing a lot of optimization on my blog
   recently because my shared hosting seems weak. I’ll look into your suggestions!
   Currently I have php 5.5.13 activated, but I can change if you think another 
   version might be better.
 *  I guess I should mark the answer as solved if you’re sure the problem is on 
   my side. I’ll let you know if I learn something.
 * Thanks!
    L-E
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Youtube Channel Gallery] Is there Pagination?](https://wordpress.org/support/topic/is-there-pagination/)
 *  [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/is-there-pagination/#post-5343191)
 * Yes I second that! That would be great…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mqTranslate] Hide Content which is not available for the selected language.](https://wordpress.org/support/topic/hide-content-which-is-not-available-for-the-selected-language/)
 *  [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/hide-content-which-is-not-available-for-the-selected-language/#post-5314091)
 * Hi
    I had some similar problems (I don’t recall exactly, but one problem was 
   coming of the fact that I was using a static homepage, which is probably what
   you’re doing) but I made this code and added it to my functions.php
 *     ```
       // Correct the loop on main page so that qtranslate excludes posts correctly
       function my_qtrans_excludeUntranslatedPosts($where) {
       	global $q_config, $wpdb;
       	if($q_config['hide_untranslated'] && !is_singular()) {
       		$where .= " AND $wpdb->posts.post_content LIKE '%<!--:".qtrans_getLanguage()."-->%'";
       	}
       	elseif($q_config['hide_untranslated'] && is_singular() && !strpos($where, "wp_posts.post_type = 'post'") && !strpos($where, "wp_posts.post_type = 'page'")) {
       		$where .= " AND $wpdb->posts.post_content LIKE '%<!--:".qtrans_getLanguage()."-->%'";
       	}
       	elseif($q_config['hide_untranslated'] && is_front_page()) {
       		$where .= " AND $wpdb->posts.post_content LIKE '%<!--:".qtrans_getLanguage()."-->%'";
       	}
       	return $where;
       }
       if(!defined('WP_ADMIN')) {
       	remove_filter('posts_where_request', 'qtrans_excludeUntranslatedPosts');
       	add_filter('posts_where_request', 'my_qtrans_excludeUntranslatedPosts');
       }
       ```
   
 * The part with WP_ADMIN is to ensure that all articles will be loaded when you’re
   on the dashboard. Play with this code and see if it helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-SpamShield] Problems with false positive](https://wordpress.org/support/topic/problems-with-false-positive/)
 *  Thread Starter [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/problems-with-false-positive/#post-4958368)
 * Thanks for your time to fix the plugin and answer questions! Marked this thread
   as solved. Have a good one too!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-SpamShield] Problems with false positive](https://wordpress.org/support/topic/problems-with-false-positive/)
 *  Thread Starter [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/problems-with-false-positive/#post-4958364)
 * Awesome! Should the activation of the “M2” option have any effect on that too?
   When should we use that option?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Instagram Widget] Small bug in alt and title of images](https://wordpress.org/support/topic/small-bug-in-alt-and-title-of-images/)
 *  Thread Starter [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/small-bug-in-alt-and-title-of-images/#post-4939292)
 * Also, could it possible to have the link pointing to the instagram profile defined
   with rel=”me”?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mqTranslate] 404 on non-default language](https://wordpress.org/support/topic/404-on-non-default-language/)
 *  Thread Starter [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [12 years ago](https://wordpress.org/support/topic/404-on-non-default-language/#post-4836653)
 * here are the info:
    Wordpress 3.9 mqTranslate 2.9.3 qtranslate 2.5.39
 * Actually, I’ve just found the culprit. I was using the following code in my functions.
   php file to correct the faulty behavior of qTranslate when clicking the logo.
   Without that correction, a click would redirect people to the default language.
   It seems to be unnecessary with mqTranslate (and actually buggy), but the website
   works when removing it:
 *     ```
       // Make the header link translated by QTranslate
       function twentyeleven_home_url( $url ) {
       	return qtrans_convertURL($url);
       }
       if ( function_exists( 'qtrans_convertURL' ) ) {
       	add_filter( 'home_url', 'twentyeleven_home_url' );
       }
       ```
   
 * So i’m marking that as resolved for me even if there might still be a bug somewhere.
   
   Thanks for your plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: qTranslate] Fixing "Hide untranslated content" with secondary loops](https://wordpress.org/support/topic/plugin-qtranslate-fixing-hide-untranslated-content-with-secondary-loops/)
 *  [hm_u](https://wordpress.org/support/users/hm_u/)
 * (@hm_u)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/plugin-qtranslate-fixing-hide-untranslated-content-with-secondary-loops/#post-4769794)
 * Yeah!! Thanks for your solution, it worked for me too.

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