fastasleep
Forum Replies Created
-
Forum: Plugins
In reply to: [Account Engagement] Cannot authenticate errorI’ve added that line to 927 and will keep an eye on it today. Hopefully that does it.
Forum: Plugins
In reply to: [Account Engagement] Cannot authenticate errorSame. (sorry, piggybacking on both threads so I can subscribe to replies on both — my client is freaking out about this). Thanks!
Forum: Plugins
In reply to: [Account Engagement] Plugin settings are missing or changedI have this issue too — I think since we just updated the plugin a few days to the latest version. Periodically it’s losing the settings and logs us out, so all of our forms disappear sitewide until someone manually goes in and logs in again in the plugin settings page.
Forum: Plugins
In reply to: [Contact Form 7] Pipes not workingI’m fine with that, if my and others’ use case is the minority then it should not be the default behavior. I’m happy there’s a solution not involving hacking the plugin, so my only suggestion would be that this makes it into any relevant documentation so it’s more easily found by people looking for a fix.
I’m still frustrated we can’t search a particular plugin’s support forum, so I’d like to see this get added to Takayuki’s website docs. 🙂
Forum: Plugins
In reply to: [Contact Form 7] Pipes not workingThank you — your response reminded me to go look at the site where I implemented this, and the plugin had been updated and broke the form — must not have been in use lately as the client hasn’t said anything yet. 🙂
I just updated CF7 again and instead of editing the code used the functions.php snippet above, and it works perfectly again.
I understand the explanation you gave, but in my particular case I’m using jQuery to add the values after the pipe from two dropdown each time the user changes either, and updating a total value field below — so even though it may pass the correct values on the back end, I needed to be able to grab the values in the DOM within jQuery, which wasn’t possible (AFAIK) without this alteration. So, THANKS!
Forum: Plugins
In reply to: [The Events Calendar] Soft 404s in Google Search ConsoleThanks, sorry I missed the KB article.
I suppose I’ll leave it alone if it’s likely not detrimental. Alternately I may just remove the Search bar from the calendar template altogether which may kill the links to the empty search results anyway.
Forum: Themes and Templates
In reply to: [Coeur] Child ThemeThis helped me, thanks. I feel like another child theme generator plugin I used on another site worked fine, the one I tried just now did not but the above code quickly fixed the issue.
Forum: Plugins
In reply to: [The Events Calendar] Using Events Calendar in Divi Not workingThanks Geoff, that may come in handy in the future.
What’s the status on a full calendar widget so that one can do what the OP is trying to do (pull in the full TEC into a Divi module in the visual editor)?
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showingI can’t read cyrillic, but make sure that’s a “browser” type API key.
Also make sure the maps APIs are actually enabled under Overview.
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showingHmm, now I see that you have Maps and TEC loading without errors… I really don’t know what the problem might be. Have you tested switching to another theme and/or turning off all other plugins temporarily just to see if it appears under either of those circumstances?
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showingNot sure which page you’re trying to implement the TEC maps, but on the home page I’m seeing that something else is calling the maps script from Google but differently than the way TEC does it, and TEC isn’t even loading on this page.
Mine is down near the bottom of the page with the rest of the footer code:
<script type='text/javascript' src='https://maps.google.com/maps/api/js?key=MYKEYHERE&ver=4.5.3'></script>Yours is near your header below your Analytics tag and is different:
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA0Nna0IpLpB5FMBGDJtl6k4MRweh9XhEw&callback=initMap" type="text/javascript"></script>So my guess is you have a conflict going on if something else is pulling in Maps and firing a callback function that fails etc. Figure out what that is, or remove it from your code if it’s manually inserted for some reason, and try TEC again.
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showingWhat about the Console, I believe you should see any errors at all there. That will go a long way.
What’s the URL? I can check if you don’t mind sharing.
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showingChris, what does your browser’s inspector console say? There are a variety of errors that you’d be able to see. This is what helped me troubleshoot my issue. How you access the console depends on your browser.
Oh, and lastly, in the API Key setup, another thing I had done was the steps in the “Domain verification” tab to verify my domain ownership. I have no idea if this is required as I can’t find any mention of it in the docs (it doesn’t even turn up when you search the API help docs, go figure), but I’d also try that step.
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showingOkay, I figured it out. In your API key setup, be sure to authorize your domain as a referrer, where it says “Accept requests from these HTTP referrers (web sites)” I believe you can leave this blank during development, but in production you must authorize your domains.
MY problem was that I used their example text in the field which they provide as:
*.example.com/*However, I’m not using ‘www’ so what I needed to add was:
example.com/*WITHOUT the leading period. I think the first time I got it working I had just put in ‘example.com’ without any slashes or wildcards, so it’s unbelievably annoying that their example doesn’t just say to put in the base domain name since that appears to work.
Google is the new Microsoft as far as the source of my development frustrations these days. >:(
Hope this helps you, @chris!
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showingBizarre — I just checked and the maps feature is working on my dev server where I built the site, even without an API key entered. Both domains had been authorized as referrers on Google. I know sites that previously used maps supposedly don’t need an API, so wondering if that has something to do with it if I had possibly used maps on another site before (not sure).