LBell
Forum Replies Created
-
Forum: Plugins
In reply to: [Pretty Google Calendar] How to display calendar times in 12-hour format?That should be set by your locale. Try switching locale?
Where is this happening? On the calendar, or the popup?
- This reply was modified 1 year, 10 months ago by LBell.
Forum: Plugins
In reply to: [Pretty Google Calendar] Google API Not Showing Google Calendar optionMarking resolved due to lack of activity.
Forum: Plugins
In reply to: [Pretty Google Calendar] Removing the “Powered by” linkNo, we don’t hold people hostage like that.
But if you wanted to contribute here: https://github.com/sponsors/lbell?frequency=recurring I’ll let you in on the secret that you can hide the branding by using this little bit of css:
.pgcal-branding { display: none }Forum: Reviews
In reply to: [Pretty Google Calendar] Does exactly as advertisedGlad you’re finding it useful! We created it because that was our experience with other plugins: “It shouldn’t be this hard!… or ugly!”
Thanks for the idea.
Just note, you should be using the “shortcode” block type, rather than HTML for shortcodes.
Forum: Plugins
In reply to: [Pretty Google Calendar] Widget shows “No events to display”Interesting. I just tried this in a test environment and it works.
Double-check your shortcode arguments (maybe copy-paste a working instance) just to cover our bases…
Forum: Plugins
In reply to: [Pretty Google Calendar] Google API Not Showing Google Calendar optionSorry I don’t have an immediate solution. Google LOVES to change the settings around. Did you look at the steps here: https://wordpress.org/support/topic/google-api-settings-and-things-to-check/
Forum: Plugins
In reply to: [Pretty Google Calendar] Change date formatMarking this as resolved.
Forum: Plugins
In reply to: [Pretty Google Calendar] The calendar will not move. Please help!!!!Howdy! Not sure what you’re having trouble with… but you put the shortcode options in the shortcode itself:
[pretty_google_calendar gcal="calendarID@group.calendar.google.com" option_name="option arg"]Forum: Plugins
In reply to: [Pretty Google Calendar] Tippy Content – Pop-up (off-screen)Thanks for the report!
I suspect this has to do with the fact that this particular calendar item is rather lengthy.
This is a known issue with Tippy that is outside the scope of what we can support: https://github.com/lbell/pretty-google-calendar/issues/3
Forum: Plugins
In reply to: [Pretty Google Calendar] Tippy wrong timezone?Thanks for the report.
This is a known issue: https://github.com/lbell/pretty-google-calendar/issues/43.
If you’d like to see this elevated up the list, I do accept money: https://github.com/sponsors/lbell
(I like Travis’ idea about where the calendar originates from, but we should still be able to handle that.)
Same issue. I was able to solve it (temporarily) by modifying the offending line of the plugin to read:
if (isset($atts["url"]) && $atts["url"] != "") {- This reply was modified 1 year, 11 months ago by LBell.
Forum: Plugins
In reply to: [Pretty Google Calendar] Month View display only what days have events?Try this argument in your shortcode:
fc_args='{"dayMaxEvents":"true"}'See https://fullcalendar.io/docs/event-popover for details.
Forum: Plugins
In reply to: [Pretty Google Calendar] Change date formatHowdy!
Glad you got the date format sorted.
For the first one, try
initial_view="listCustom". You should also remove thelist_typeargument as it defaults tolistCustomand there is no list type called justcustom. And you don’t need theenforce_listview_on_mobileas that default to “true”.For the second, you can remove both the
viewsand theenforce_listview_on_mobilearguments, as the defaults should set up what you need. (It is switching to list as I’m looking at it, FWIW).Enjoy!
FullCalendar by default renders times in your local timezone, which the browser gets from the computer’s timezone. So changing your computer’s timezone should change the display of the calendar.
Try using this shortcode argument:
fc_args='{"timeZone":"local"}'and that may clear things up.