LBell
Forum Replies Created
-
Forum: Plugins
In reply to: [Pretty Google Calendar] Weekly calendar viewAny view that FullCalendar has, we have 😉
For example, for the
dayGridWeekview (https://fullcalendar.io/docs/daygrid-view) you’d use[pretty_google_calendar gcal="yourcal" views="dayGridWeek" initial_view="dayGridWeek"]Forum: Plugins
In reply to: [Pretty Google Calendar] Elementor CSSA quick poke around looks like this might work:
.pgcal-container {
--e-global-typography-secondary-font-weight: normal;
}Forum: Plugins
In reply to: [Pretty Google Calendar] CodingClosing due to lack of information.
Forum: Plugins
In reply to: [Pretty Google Calendar] How to Show Only Past Events?It looks like there is a way: https://fullcalendar.io/docs/visibleRange but it’s outside the scope of what you can do with shortcodes. If you’d like to submit a feature request you can do so here: https://github.com/lbell/pretty-google-calendar/issues
Forum: Plugins
In reply to: [Pretty Google Calendar] CodingCan you share what you’ve tried?
[pretty_google_calendar gcal="yourcalendarid" no_link="true" enforce_listview_on_mobile="false"]The above should take care of #1 and #3.
#2 might be drive by the
localeargument. Otherwise, you can tryfc_args='{"firstDay":"1"}Not sure what you mean by #4?
- This reply was modified 1 year, 7 months ago by LBell.
Forum: Plugins
In reply to: [Pretty Google Calendar] Events Not Showing Up – I’ve Tried EverythingHoping this was solved. Closing due to inactivity.
Forum: Plugins
In reply to: [Pretty Google Calendar] description in the list viewClosing due to inactivity.
Forum: Plugins
In reply to: [Pretty Google Calendar] CodingHowdy! Can you provide an example of what your are trying to achieve?
Forum: Plugins
In reply to: [Pretty Google Calendar] Label colorsHowdy! As far as I’m aware, Google does not send this information through the API, so there is no way for the calendar to know what color you have set your events.
If you have other information, we’d be happy to look into
Forum: Plugins
In reply to: [Pretty Google Calendar] description in the list viewHowdy! Can you provide a mock-up of what you are trying to achieve?
Take a loot at fullcalendar.io. If it’s possible there, it’s likely possible here 😉
Forum: Plugins
In reply to: [Pretty Google Calendar] Events Not Showing Up – I’ve Tried EverythingHowdy! Were you able to fix this? At first glance, your shortcode has a space between
gcal=and the"gns..."that shouldn’t be there.Forum: Plugins
In reply to: [Pretty Google Calendar] Strucured Data warningInitial thought is don’t worry about it. Structured data just helps google parse what a thing is… But if it’s something we can clean up, we’d be happy to impliment.
Can you send more details about where this appearing, and what information is provided?
Forum: Plugins
In reply to: [Pretty Google Calendar] Full Day Events not showing upOdd. It is working on our test environment and other installs. Honestly have no idea what the issue could be.
Forum: Plugins
In reply to: [Pretty Google Calendar] List view (custom) date formatHowdy! Does the answer here get you close?
https://wordpress.org/support/topic/add-year-to-list-view/
Also see here:
https://fullcalendar.io/docs/listDayFormat
and here:
Forum: Plugins
In reply to: [Pretty Google Calendar] How to display calendar times in 12-hour format?You can override the time format using the
fc_argsshortcode argument.Something like:
fc_args='{"timeFormat":"h(:mm)t"}'should do the trick.