sylwwwester
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Language of calendarThanks! It helped.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Language of calendarSame here.
Months in header (list view) are in Polish, as expected. In details of event names of months are in English.Yes, we have to correct it on each update, also after update to 3.0.9.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Days of Week Incorrect@nick Young
clearing cache doesn’t helpForum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Days of Week IncorrectWordpres 4.3.1, Simple Calenar 3.0.3
Still an issue, calendar in grid shows incorrect headers for columns or incorrect day of week for a date ie. 1 November as monday, should be sunday
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Days of Week IncorrectHey Nick,
as you can see on screen in link below November is starting on Monday (p) and today is Saturday (s) and should be Friday (p).
I’m using PHP 5.6.12, Wordpres 4.3.1, Simple Calenar 3.0.2 and polish language. Calendars timezone is set toEvents sourcein Googel calendar it is set to (GMT+01:00) Warsaw, same as WordPress timezone.In calendar settings a have set
Week start on: Site default (Sunday).Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Days of Week Incorrectin file
includes\calendars\views\default-calendar-grid.phpafter lines 226-228 which goes$week_starts = $calendar->week_starts; $week_days_short = simcal_get_calendar_names_i18n( 'day', 'short' ); $week_days_full = simcal_get_calendar_names_i18n( 'day', 'full' );you can add this code:
$wds[0] = $week_days_short[6]; $wdf[0] = $week_days_full[6]; $wds[1] = $week_days_short[0]; $wdf[1] = $week_days_full[0]; $wds[2] = $week_days_short[1]; $wdf[2] = $week_days_full[1]; $wds[3] = $week_days_short[2]; $wdf[3] = $week_days_full[2]; $wds[4] = $week_days_short[3]; $wdf[4] = $week_days_full[3]; $wds[5] = $week_days_short[4]; $wdf[5] = $week_days_full[4]; $wds[6] = $week_days_short[5]; $wdf[6] = $week_days_full[5]; $week_days_short = $wds; $week_days_full = $wdf;i know it’s ugly but its works and I have only 5 minutes now
For your first problem, have you tried [description autolink=”yes”] ? It works for me.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Widget list view — CSS helpYou’ve got an empty paragraphs after event title (?), look into your WordPress content editor.
Also you can adjust spacing in CSS with .simcal-calendar ul li
More info: http://docs.simplecalendar.io/displaying-calendars/
You can create two calendars for same source, one with list view, one with grid view. I liked old way, one calendar and saparate view for widget (ie list) and another view for full calendar (ie grid), but creating two calenadrs can work either.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Shortcode Calendar Display IssuesHave you tried “Always Enqueue” in Calendars->Settings->Advanced ?