Forum Replies Created
-
AuthorPosts
-
January 26, 2017 at 10:31 am in reply to: Months are displaying instead of days in calendar #1224532
Fadi
ParticipantI have deleted some WPML string translations and redone some of the procedure described in the links provided and it works now with days one letter
ThanksFadi
ParticipantNothing changed.
January 23, 2017 at 12:10 pm in reply to: Months are displaying instead of days in calendar #1222531Fadi
ParticipantI am not translating via custom code. ‘short’ provide me days in 3 letters in order to translate with WPML.
If I use default display, I have problem with ‘T’ tuesday and thursday, ‘S’ saturday ans sunday when translating from english to french
January 20, 2017 at 11:30 am in reply to: Months are displaying instead of days in calendar #1221661Fadi
Participanthttps://gist.github.com/anonymous/798997685453cd91f1ce29c3b0d8455b
I have only hidden some lines in single-event and details by deleting them
and replaced min by short to show days in 3 letters in order to translate them to frenchFadi
ParticipantWhen I remove custom coding I have default display. Days in one letter (M, T, …).
Only when I switch min to short line 16 in the the mini-calendar widget grid.php, we have months instead of days
January 19, 2017 at 10:40 am in reply to: Months are displaying instead of days in calendar #1221068Fadi
ParticipantHi
If you look to a previous thread (https://theeventscalendar.com/support/forums/topic/display-days-with-3-letters-in-mini-calendar-shortcode/), I have replaced line 16 in the the mini-calendar widget grid.php min by short
($days_of_week = tribe_events_get_days_of_week( ‘short’ );) and it was working well.
Lately, it is generating wrong displayNovember 14, 2016 at 7:08 am in reply to: Display days with 3 letters in mini calendar shortcode #1191809Fadi
ParticipantThat’s it
ThanksNovember 10, 2016 at 11:19 pm in reply to: Display days with 3 letters in mini calendar shortcode #1190741Fadi
ParticipantI am not asking for cutomization. It is a simple display thing that the shortcode had to do. I have seen already on your pages such things
https://theeventscalendar.com/content/uploads/2015/04/kb-widgets-calendar.gifIf the plugin is unable to show days written instead of abreviation or simple letters, it is useless
November 10, 2016 at 10:42 am in reply to: Display days with 3 letters in mini calendar shortcode #1190489Fadi
ParticipantThanks for the link but it shows the opposite of what I am searching for.
I have already the days in 1 letter (M, T, W, T, F, S, S). I am searching to display 3 letters in English (MON, TUE, WED, THU, FRI, SAT, SUN) in order to translate them with wpml to french (LUN, MAR, MER, JEU, VEN, SAM, DIM).
I have tried the following code but I have a problem with tuesday/thirsday and saturday/sunday:
<?php foreach ( $days_of_week as $day ) :
if ( $day == ‘M’ ) {
$day = ‘MON’;
} elseif ( $day == ‘T’ ) {
$day = ‘TUE’;
} elseif ( $day == ‘W’ ) {
$day = ‘WED’;
} elseif ( $day == ‘T’ ) {
$day = ‘THU’;
} elseif ( $day == ‘F’ ) {
$day = ‘FRI’;
} elseif ( $day == ‘S’ ) {
$day = ‘SAT’;
} elseif ( $day == ‘S’ ) {
$day = ‘SUN’;
}?>
<th class=”tribe-mini-calendar-dayofweek”><?php echo $day ?></th>
<?php endforeach; ?> -
AuthorPosts
