Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)
  • 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!!!!

    Thread Starter Trollhunter

    (@trollhunter)

    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.

    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.

    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.

    No problem! Glad to help!

    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.

    Thread Starter Trollhunter

    (@trollhunter)

    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.

    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?

    Thread Starter Trollhunter

    (@trollhunter)

    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.)

    No problem! Good luck!

    That would pertain to the theme options. Questions pertaining to your theme are here: 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)