Since the widget form of the Simple Calendar is always the minimized dot version, it would be nice if it loaded in that form immediately. My page gets a hangup on some other processes, and I have to stare at a grotesque, smushed calendar until it finally updates with the rest of the page.
]]>Love this plug-in, but I can’t get recurring events to work. Would love to not have to re-make an event 29 times for it to show up!
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>I have loaded this in a Divi theme in the sidebar area but the alignment of the days of week is off at the top. How do I fix this? There is no issue with full width calendar on a calendar page.
My site is local but I can send a file if you want to see this. The last day of the week is out of calendar area.
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Hi. I have your plugin installed and have our ID saved into it, but no events show up. They do on the calendar page where I just embed the Google Calendar, but not on the page with the Widget, which continues to be blank.
Are you still sorting our API issues?
Thanks
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>PLEASE DELETE THIS POST…realized I was on the wrong forum. Sorry.
]]>Hello,
I am using v0.6 (latest) of your plugin and I like it.
the problem is that recurring events (either entire day or only for some hours) do not show up in the widget, all others show correctly.
(recurring: like every Tuesday or Thursday…)
What’s wrong here?
Can fix the php myself if you tell me how.
Thanks,
Thomas
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>After updating to WP 3.9 and beyond, it suddenly stopped working. Not showing any events. Does anyone else have the same problem?
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>I installed the plugin, but it doesn’t show anything after putting in my calendar ID.
URL of my site: https://www.amplonius.de
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>I forked the project on GitHub and updated it to use the v3 API. There are more setup steps now and it also requires the Google API PHP Client, which I haven’t bundled, which itself requires PHP 5.3.
https://github.com/BrianHenryIE/simple-google-calendar-widget
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>My existing websites use a different plugin that was based on the Google API v2 which is officially deprecated as of today (Nov 17, 2014). So I’m looking for an alternative that uses API v3. (as I’m sure are many others)
Does this plugin use v2 or v3 of the Google API?
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Since the thread with this same title is closed, I’m opening a new one.
Despite what is said in that thread, the plugin is NOT reflecting the timezone setting in WP. When an event is clicked, the popup shows GMT, which WP is set to New York time.
How can this be fixed? Useless as it is.
twcsing.com
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Hi- this plugin is great. Love how it connects directly to my Google calendar. And it’s simple to install and use for a non-techie like me.
However, I would like to to make the listing less confusing. The day and month are bunched together. An earlier post above (“Change spacing for date”) provided code to add a space between the month and title. but the day and month are still too bunched, like this:
16Oct
…instead of like this:
16 October
The current setup looks like the number 160 followed by”ct”.
Can this be easily fixed by you or a code to the theme’s css?
Thanks!
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Hi, is the plugin supposed to show the start time out of the box? Is there something I need to add? See bottom of sidebar for feed as it is now; https://www.palmyranjumc.org
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>I installed the calendar widget and put in the calendar code. When I go to the website all that shows up is all the code, not the calendar.
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Looks like it stops page content from loading.
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Am removing from the site for now.
Here is some of what I get.
Warning: SimpleXMLElement::__construct() [simplexmlelement.–construct]: Entity: line 1: parser error : Start tag expected, ‘<‘ not found in /home/healt142/public_html/wp-content/plugins/simple-google-calendar-widget/simple_gcal.php on line 78
Warning: SimpleXMLElement::__construct() [simplexmlelement.–construct]: Invalid request URI in /home/healt142/public_html/wp-content/plugins/simple-google-calendar-widget/simple_gcal.php on line 78
Warning: SimpleXMLElement::__construct() [simplexmlelement.–construct]: ^ in /home/healt142/public_html/wp-content/plugins/simple-google-calendar-widget/simple_gcal.php on line 78
Fatal error: Uncaught exception ‘Exception’ with message ‘String could not be parsed as XML’ in /home/healt142/public_html/wp-content/plugins/simple-google-calendar-widget/simple_gcal.php:78 Stack trace:
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Hi,
The dates on my calendar widget are showing up incorrectly. They are being shown as one date but when clicked on the previous day is shown in the calendar. Any way to fix this? The website is https://www.allentownpublictheatre.com/. Our calendar can be seen HERE
The last support post I saw about this was from a year ago and it seems the issue was resolved. Could this be something with the widget or is it my calendar or widget settings? I have the number of items to display set to 7 and cache refresh at 60 min.
Thank you
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Is it possible to swap the day and month, e.g. Aug 10 and not 10 Aug?
Thanks.
https://www.ads-software.com/plugins/simple-google-calendar-widget/
]]>Hi,
thanks for a great plugin!
How do I change the language? I would like to have the months displayed in german. If that is not possible, numerical month formats would be fine , too. (e.g.: 5 May –> 5.05 )
Thank you for your response!
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>When rendering the day, if the source calendar appointment has a time specified, the date is selected from the PHP default timezone, which in WordPress is always set to UTC – for in their wisdom WordPress prefers to adjust the time offset itself.
The Simple Google Calendar Widget makes use of the PHP function strtotime
, which as far as I can tell would normally handle timezone conversion itself.
In order to correct this issue for our site, although I am certainly no developer – I made some changes to the constructor to set the PHP timezone, and added a destructor to undo this in simple_gcal.php so as not upset other WordPress functions later.
I am not sure if this is the cleanest solution, and certainly these changes would be lost if there were any updates received for the plug-in.
I would appreciate a fix to be incorporated into this plugin in a future release.
Kind regards,
Craig.
This is a hack, not a fix:
class Simple_Gcal_Widget extends WP_Widget
{
public function __construct()
{
// load our textdomain
load_plugin_textdomain('simple_gcal', false, basename( dirname( __FILE__ ) ) . '/languages' );
// Begin DATE HACK
date_default_timezone_set("Pacific/Auckland");
// End of DATE HACK
parent::__construct('Simple_Gcal_Widget', 'Simple Google Calendar Widget', array('description' => __('Displays events from a public Google Calendar', 'simple_gcal')));
}
// Begin DATE HACK
public function __destruct()
{
date_default_timezone_set("UTC");
}
// End of DATE HACK
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>Hello,
One of my clients has THREE rooms/sections displayed on his Google calendar (they have three rooms).
However, the plugin only displays the first room’s calendar.
How can we include the other ones?
Thanks!
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>Just started getting this warning! Does anyone know what I need to do to fix it?
Warning: Invalid argument supplied for foreach() in /hermes/bosweb/web132/b1326/ipg.youarewelcomehereorg/wp-content/plugins/simple-google-calendar-widget/simple_gcal.php on line 122
Thanks
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>I am using this plugin and it is awesome. It lists the title and date perfectly. The problem I’m having is with Safari and FF when you click the event it lists the time correctly but when you click with Chrome or IE it adds 5 hours to the time. My calendar itself has the correct times and time zone but am wondering if it is pulling in another time zone with those two browsers.
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>pollmannfamily.us
Admittedly, I’m very new to wordpress.
The date and event are very close together, and I’ve looked in the code and haven’t yet found what I’m looking for.
The date is to squished together. “26AprNWEA”
And there needs to be spaces added.
Where is the code to add/edit?
Thanks
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>The following error appears, when adding the widget to my site:
Fatal error: Cannot use object of type WP_Error as array in [...]\wp-content\plugins\simple-google-calendar-widget\simple_gcal.php on line 77
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>For example — I’ve got an event in google for 8 pm on the 8th. And it’s showing up as the 9th on my feed. That happens on any event that takes place in the evening.
Any thoughts one what might be wrong? I’ve checked my time zone settings on the calendar and in wordpress and they’re both correct.
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>I am using this very nice simple plugin in a footer widget for one calendar event each day. However, for some reason the calendar event switches over to the next day’s event about 8 hours too early. We are on Pacific time. I have changed the time settings in WordPress and in the Google Calendar settings but still not working after several days.
Wondering where I should change the code in the plugin if that is what is needed.
Thanks.
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>Just to say Thank You to the author for an excellent plugin and even better customer service he provides. If there was a facility, I’d be happy to donate!
Thank you.
Artur
you can have a look at the working plugin here, on the home page:
https://www.hatfield.pl
https://www.ads-software.com/extend/plugins/simple-google-calendar-widget/
]]>