displaying the calendar horizontally
-
I need help modifying the events calendar for WordPress, I need to add the day of the week under the number, and display the calendar horizontally..
like this:
https://i.imgur.com/bXHF2Sb.jpghere is the code I’m working with:
<table class="tribe-mini-calendar" <?php tribe_events_the_mini_calendar_header_attributes() ?>> <?php do_action( 'tribe_events_mini_cal_before_header' ); ?> <thead class="tribe-mini-calendar-nav"> <tr> <td colspan="7"> <div> <?php tribe_events_the_mini_calendar_prev_link() ?> <span id="tribe-mini-calendar-month"><?php tribe_events_the_mini_calendar_title() ?></span> <?php tribe_events_the_mini_calendar_next_link() ?> <img id="ajax-loading-mini" src="<?php echo tribe_events_resource_url( 'images/tribe-loading.gif' ) ?>" alt="loading..." /> </div> </td> </tr> </thead> <?php do_action( 'tribe_events_mini_cal_after_header' ); ?> <?php do_action( 'tribe_events_mini_cal_before_the_grid' ); ?> <thead> <tr> <?php foreach ( $days_of_week as $day ) : ?> <th class="tribe-mini-calendar-dayofweek"><?php echo $day ?></th> <?php endforeach; ?> </tr> </thead> <tbody class="hfeed vcalendar"> <tr class="first-row"> <?php while (tribe_events_have_month_days()) : tribe_events_the_month_day(); ?> <?php if ($week != tribe_events_get_current_week()) : $week ++; ?> </tr> <tr> <?php endif; ?> <th class=" <?php tribe_events_the_month_day_classes() ?>"> <?php tribe_get_template_part( 'pro/widgets/mini-calendar/single-day' ) ?> </th> <?php endwhile; ?> </tr> </tbody> <?php do_action( 'tribe_events_mini_cal_after_the_grid' ); ?> </table>
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘displaying the calendar horizontally’ is closed to new replies.