LBell
Forum Replies Created
-
Forum: Plugins
In reply to: [Pretty Google Calendar] Tooltip on mouse over?@nimmerdk – I could conceivably see adding this as an option but it’ll take some doing. Could you open a feature request here: https://github.com/lbell/pretty-google-calendar
@godelri – Glad you found a workaround! I’d still like to sleuth how to make the default work with the OnAir theme though…
- This reply was modified 2 years, 4 months ago by LBell.
Forum: Reviews
In reply to: [Pretty Google Calendar] Hits all the right spotsKeep it simple 😉
Forum: Reviews
In reply to: [Pretty Google Calendar] Best Free CalendarThanks for the review, and for supporting FOSS!
Forum: Reviews
In reply to: [Pretty Google Calendar] Really great plugin.Happy to share it with you. Thanks for leaving a review.
Forum: Reviews
In reply to: [Pretty Google Calendar] Really great plugin.Thanks for the review. Glad it’s working for you!
Forum: Plugins
In reply to: [Pretty Google Calendar] Changing colourHi!
Not exactly sure which date you’re looking at, but I’m guessing you need the
.fc-list-day-textselector.For sleuthing out what CSS rules are affecting your particular site, I’d recommend using the dev tools on your browser: https://developer.mozilla.org/en-US/docs/Learn/Common_questions/Tools_and_setup/What_are_browser_developer_tools
Good luck!
Forum: Plugins
In reply to: [Pretty Google Calendar] monthview colorIt looks like your WooCommerce theme is overriding the CSS. I note:
.woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce-info, .woocommerce-error, .woocommerce-message, tbody tr:nth-child(even), pre {background: #000000;}That should get you started toward looking for a solution.
Possibly:
.fc-event {background: white !important;}Or similar.
Please post if you find a solution.
Forum: Plugins
In reply to: [Pretty Google Calendar] Change starting dayGreat! Mind sharing what worked for you?
If other’s are looking, you should be able to use the shortcode argument:
fc_args='{"firstDay":"1"}'to switch to Monday as the start day.Forum: Plugins
In reply to: [Pretty Google Calendar] Adjusting overall sizeHowdy!
The Calendar expands to fit the available space.
You can use CSS to adjust the width a number of ways. Universally you could use
.pgcal-container { width: 400px;}which will change all instances.If you just want to confine one instance of a calendar, I’d recommend wrapping it in a “Group” block type in WP, and giving that “Group” a CSS tag like
.cal-boxand setting.cal-box { width: 400px;}Note: if you are tweaking the CSS live (with Dev Tools or your themes “additional css”) it’s just shrink the box cutting of the calendar. You need to reload the calendar with the new CSS to get it to resize.
Hope that helps.
Forum: Reviews
In reply to: [Pretty Google Calendar] THIS is AWESOME.Enthusiasm always welcomed here. Thanks for the review!
Forum: Plugins
In reply to: [Pretty Google Calendar] CSS color coding questionHowdy!
It looks like you got it working (I see
pgcal-event-9is colored properly).As for where to put the CSS, I’d recommend using a custom CSS plugin (easier) or theme file (more involved) to add the CSS, otherwise your changes in
pgcal.csswill get overwritten with the next update.Closing this issue for now.
- This reply was modified 2 years, 4 months ago by LBell.
Forum: Plugins
In reply to: [Pretty Google Calendar] Color coded eventsGlad it’s useful!
As far as I know, Google does not surface that information through the API. If they do, it doesn’t appear that FullCalendar makes that information available.
The best we can do is color on a per-calendar basis.
Forum: Plugins
In reply to: [Pretty Google Calendar] Tooltip on mouse over?There’s not an easy setting for this, but you can edit the plugin file
/pretty-google-calendar/public/js/tippy.jsline #37 to read:trigger: "mouseenter focus",(Note: This change will need to be re-added after each update)
Forum: Plugins
In reply to: [Pretty Google Calendar] Styling?Glad you got it sorted.
For other looking for the answer, as of v1.7.0 for mulitple calendar feeds combined in the same calendar, each event is given the class
pgcal-event-0for all events from the first calendar,pgcal-event-1for all events from the 2nd calendar, etc.You can use custom CSS to style as you see fit.
- This reply was modified 2 years, 4 months ago by LBell.
Forum: Plugins
In reply to: [Pretty Google Calendar] wrong navigation languageGood catch. Have a fix that will be in the next release (imminent).