Adage

Forum Replies Created

Viewing 3 posts - 46 through 48 (of 48 total)
  • Author
    Posts
  • in reply to: Make the counter widget title not clikable #1023318
    Adage
    Participant

    Hello and thank you,
    Yes it is this widget.
    Here is a link where you can see the widget into a siderbar :
    http://campagnempp2015.com/
    The title is “ÉLECTIONS COUPLÉES DANS :”
    Thank you very much !

    • This reply was modified 10 years, 5 months ago by Adage.
    in reply to: Change days column titles in calendar widget #1023236
    Adage
    Participant

    Here is the code I have in the file you shown :

    <?php
    /**
     * Mini Calendar Widget Grid Template
     * This file loads the mini calendar widget grid
     *
     * Override this template in your own theme by creating a file at [your-theme]/tribe-events/pro/widgets/mini-calendar/grid.php
     *
     * @package TribeEventsCalendar
     *
     */
    if ( ! defined( 'ABSPATH' ) ) {
    	die( '-1' );
    } ?>
    
    <?php
    $days_of_week = tribe_events_get_days_of_week( 'min' );
    $week         = 0;
    
    ?>
    <div class="tribe-mini-calendar-grid-wrapper">
    	<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 />" 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>
    			<?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; ?>
    			<td class="<?php tribe_events_the_month_day_classes() ?>">
    				<?php tribe_get_template_part( 'pro/widgets/mini-calendar/single-day' ) ?>
    			</td>
    			<?php endwhile; ?>
    		</tr>
    		</tbody>
    		<?php do_action( 'tribe_events_mini_cal_after_the_grid' ); ?>
    	</table>
    </div> <!-- .tribe-mini-calendar-grid-wrapper -->

    Where are the M TU W TH F SA SU or L MA ME J V S D ?

    Thank you.

    • This reply was modified 10 years, 5 months ago by Adage.
    in reply to: Change days column titles in calendar widget #1023180
    Adage
    Participant

    Hello,

    Your solution is to change the code ; I don’t want to change the code, juste the translation.

    M (for Monday) is translated L (for Lundi) in French ;
    TU (for TUesday) is translated MA (for MArdi) in French ;
    W (for Wednesday) is translated ME (for MErcredi) in French.

    What I want is to change the translations of “TU -> MA” to “TU -> M” and from “W -> ME” to “W -> M”.

    Thank you.

Viewing 3 posts - 46 through 48 (of 48 total)