Title: Trollhunter's Replies | WordPress.org

---

# Trollhunter

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WP Store Locator] This plugin is brilliant and free!!!](https://wordpress.org/support/topic/this-plugin-is-brilliant-and-free/)
 *  [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/this-plugin-is-brilliant-and-free/#post-7852935)
 * I agree. This will be the “go-to” locator plugin on WordPress. It’s not only 
   the best locator plugin I’ve ever used, but one of the best plugins I’ve ever
   used on WordPress!!!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Store Locator] Map controls not displaying properly](https://wordpress.org/support/topic/map-controls-not-displaying-properly/)
 *  Thread Starter [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/map-controls-not-displaying-properly/#post-5045663)
 * You were correct, it was the img CSS! The theme’s CSS I’ve altered is responsive
   with max-widths. In case anyone has the problem:
 * `img {max-width: 100%;}`
 * I just targeted the div wrapper for the map in a child theme:
 * `#wpsl-gmap img {max-width: none;}`
 * Looks great now. Thanks so much for the quick response and great plug-in! My 
   client loves the locator map.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Single event page not showing](https://wordpress.org/support/topic/single-event-page-not-showing/)
 *  [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/single-event-page-not-showing/#post-4772147)
 * Hey Rob, thanks so much for the response! I’ve been completely baffled as to 
   why the calendar is working on one site with the same theme and plugins, and 
   the other not showing the single event page. I tried resaving the permalink setting
   to no avail. For the time being, I have it set on “list” format, since it gives
   more event info on the main calendar page.
 * I certainly want to use your plugin, as both my client and I are very impressed
   with it. Could it be another issue on the backend/database? Very weird.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Single event page not showing](https://wordpress.org/support/topic/single-event-page-not-showing/)
 *  [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/single-event-page-not-showing/#post-4771893)
 * This seems to be a common problem with this plugin. They typically tell you to
   1)Disable other plugins to check for conflicts 2)Try it with the 2013 theme 3)
   Go to Settings –> Permalinks admin page. (That’s all, don’t check anything.)
 * Hope it all works for you.
 * I’m having this problem after doing everything above, although it works fine 
   on my development server, but not on the live site server. I have no idea why.
   Same plugins, etc. I’m going on a month now with no fix. Won’t go much longer,
   and afraid to upgrade for my client.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Text not appearing in Chrome update](https://wordpress.org/support/topic/text-not-appearing-in-chrome-update-1/)
 *  [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/text-not-appearing-in-chrome-update-1/#post-4667981)
 * No problem! Glad to help!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Text not appearing in Chrome update](https://wordpress.org/support/topic/text-not-appearing-in-chrome-update-1/)
 *  [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/text-not-appearing-in-chrome-update-1/#post-4667966)
 * I’ve got some information on this problem now. It appears to be Google Chrome
   related- specifically, the latest version: Chrome 33. It’s not rendering the 
   Google fonts properly, and giving developers fits. I have a temporary fix that’s
   working for me. Credit goes to rafikibubu in Google Groups.
 * As long as you have the Google fonts defined as usual in your code, the following
   can be placed in the `<head>` section of your PHP file. Essentially, it forces
   Chrome to load the fonts again. They may take about 3-4 seconds after page load,
   but it’s better than nothing:
 *     ```
       <script>
       WebFontConfig = {
         google: { families: ['FontOne', 'FontTwo'] },
           fontinactive: function (fontFamily, fontDescription) {
          //Something went wrong! Let's load our local fonts.
           WebFontConfig = {
             custom: { families: ['FontOne', 'FontTwo'],
             urls: ['font-one.css', 'font-two.css']
           }
         };
         loadFonts();
         }
       };
   
       function loadFonts() {
         var wf = document.createElement('script');
         wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
           '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
         wf.type = 'text/javascript';
         wf.async = 'true';
         var s = document.getElementsByTagName('script')[0];
         s.parentNode.insertBefore(wf, s);
       }
   
       (function () {
         //Once document is ready, load the fonts.
         loadFonts();
         })();
       </script>
       ```
   
 * You may want to specify the fonts in the above code, but it seems to be working
   as is. As I said, this is only a temporary fix. Hopefully Chromium gets this 
   huge problem fixed ASAP.
 * *Edit* Thanks for the link above. It appears it is fixed for the forthcoming 
   versions of Chrome.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] "Nothing found for the requested page."](https://wordpress.org/support/topic/nothing-found-for-the-requested-page/)
 *  Thread Starter [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/nothing-found-for-the-requested-page/#post-4669947)
 * Interesting problem. On the development server with the identical theme and plugins
   installed, it works with any permalink setting. On the live server, it doesn’t.
   It only works when set to default.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Text not appearing in Chrome update](https://wordpress.org/support/topic/text-not-appearing-in-chrome-update-1/)
 *  [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/text-not-appearing-in-chrome-update-1/#post-4667886)
 * Is this with Google Fonts?
 * If so, I am having the very same problem. Strangely however, on my development
   site, which has an identical install, content and theme/framework, Google Fonts
   are showing fine.
 * I’m trying to get this sorted out before my client promotes their new site. Does
   anyone have a clue as to what is causing this? And why is the issue surfacing
   when accessing one server and not another?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Google Fonts: Chrome Problems on One Server, Not Other](https://wordpress.org/support/topic/google-fonts-chrome-problems-on-one-server-not-other/)
 *  Thread Starter [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/google-fonts-chrome-problems-on-one-server-not-other/#post-4664105)
 * Just to add here, after looking closely at both installs, they appear identical.
   Just 2 different hosts. If anyone has had this happen and/or knows the remedy,
   drop me a reply. Thanks.
 * (I can’t give a link to either, because the site is for a startup that now has
   a nationally distributed product- their website overhaul won’t be announced until
   later this week via social media. Don’t want to give it any Google juice yet.)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I change the color my text in my nav bar](https://wordpress.org/support/topic/how-do-i-change-the-color-my-text-in-my-nav-bar/)
 *  [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/how-do-i-change-the-color-my-text-in-my-nav-bar/#post-4663986)
 * No problem! Good luck!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I change the color my text in my nav bar](https://wordpress.org/support/topic/how-do-i-change-the-color-my-text-in-my-nav-bar/)
 *  [Trollhunter](https://wordpress.org/support/users/trollhunter/)
 * (@trollhunter)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/how-do-i-change-the-color-my-text-in-my-nav-bar/#post-4663965)
 * That would pertain to the theme options. Questions pertaining to your theme are
   here: [http://sandipsekhon.com/simvance-wordpress-theme/](http://sandipsekhon.com/simvance-wordpress-theme/)
 * The other option is to create a child theme that contains a CSS file, if you 
   know CSS.

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