LBell
Forum Replies Created
-
Forum: Plugins
In reply to: [Pretty Google Calendar] fc_argsPretty much any argument you can use for FullCalendar can be plugged in here, with the notable exception that an argument with square brackets will break, because of how WordPress parses shortcode arguments.
The defaults that the plugin uses can be found in pgcal.js line 56: https://github.com/lbell/pretty-google-calendar/blob/d7a9738b60099b32df7b9ce7b99889380bdfebb1/public/js/pgcal.js#L56
Anything you put in
fc_argswill override or supplement those arguments.So, for example, you can tweak options like the
fixedWeekCountfor the day grid, or specify your ownheaderToolbar.Check out FullCalendar docs for some options: https://fullcalendar.io/docs
Forum: Plugins
In reply to: [Pretty Google Calendar] List starting at current day when set to Month modeHowdy!
Does seem like something fishy is going on with the
list_typeparsing. We’ll look into that: https://github.com/lbell/pretty-google-calendar/issues/57Meanwhile, if you use JUST these arguments
views="dayGridMonth, listMonth" initial_view="dayGridMonth"that should achieve what you’re looking for.(And yes, the default is to use a custom list that shows the next 28 days.)
Forum: Plugins
In reply to: [Pretty Google Calendar] Remove border around calendarThat looks to be coming from how your theme handles blocks that Pretty Google Calendar is embedded within, and their classes
et_pb_with_border et_pb_module et_pb_code et_pb_code_1This is outside of our scope of support 😉
Forum: Plugins
In reply to: [Pretty Google Calendar] Display DescriptionYou can hide the “Add button” using css
.toolloc { display: none; }(Though looking at this, it seems there should be a way to hide just the map button, or just the add button. I added a request for that: https://github.com/lbell/pretty-google-calendar/issues/56 )
Forum: Plugins
In reply to: [Pretty Google Calendar] Display DescriptionTo answer your first question, no there is no way to include event attachments at this time. If you like, you can vote on this feature here: https://github.com/lbell/pretty-google-calendar/issues/40
As for the “Add to Google Calendar” that is a convenient way for visitors to add that even to THEIR google calendar. Not sure why it is overlapping anything though, sounds like the formatting is off. Can you share a link to the page you’re working on?
Forum: Plugins
In reply to: [Pretty Google Calendar] Display DescriptionHowdy! You may be looking for the
use_tooltip="true"shortcode argument: https://wordpress.org/plugins/pretty-google-calendar/#installationForum: Plugins
In reply to: [Pretty Google Calendar] Remove border around calendarHowdy! By default, the borders are driven by your theme or a plugin.
You can override that with a CSS that targets
pgcal-containerorfcclasses.- This reply was modified 1 year, 4 months ago by LBell.
Forum: Plugins
In reply to: [Pretty Google Calendar] [Elastic APM] Failed sending events! – Google ChromeIf you can share a link to the page you’re having trouble with we can look a little closer.
Forum: Plugins
In reply to: [Pretty Google Calendar] [Elastic APM] Failed sending events! – Google ChromeThe plugin does not use this library, and it does not look like FullCalender.io does either. It’s a user tracking library. Possibly another plugin or your theme impliments it? (https://www.elastic.co/guide/en/apm/agent/rum-js/current/intro.html)
Try disabling other plugins or switching themes to see if this helps.
Based on what you’ve described, it sounds like an issue with how each browser prioritizes loading resources.
Forum: Plugins
In reply to: [Pretty Google Calendar] List View Mobile only when reloadingJust to rule out all possibilities, ensure you are using straight quotes
"..."in your shortcode, and not curly quotes“...”Forum: Plugins
In reply to: [Pretty Google Calendar] List View Mobile only when reloadingClosing due to lack of information.
Forum: Plugins
In reply to: [Pretty Google Calendar] Calendar not updating daily/monthly automaticallyHowdy! Looks like you’re using a different plug-in. Sorry, wish we could help
Forum: Plugins
In reply to: [Pretty Google Calendar] List View Mobile only when reloadingOdd, I’m not able to reproduce this. But I see the issue on your site.
Two things of note:
- You don’t need the custom_days argument as that only refers to the listCustom type which you are not using.
- You don’t need the enforce_listview_on_mobile since your explicitly only allowing one list (listDay)
Try removing both of those, and see if that helps?
Forum: Plugins
In reply to: [Pretty Google Calendar] Weeks Starting on MondayHowdy! You appear to be using a different plugin, as this does not rely on iframe. Good luck!
Glad you got it sorted!