Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor webdorado

    (@webdorado)

    Dear Ben,

    This should be edited from the product code. There are no default settings for that.

    Can you give an example of how to edit this from the code- or where to locate it within the code- for us non-coders 🙂

    Sona

    (@support-web-dorado)

    Dear users,

    go to spider-event-calendar\front_end\bigcalendarmonth.php
    search for <?php echo $year . ‘, ‘ . __($month, ‘sp_calendar’); ?>
    and replace it with
    <?php echo __($month, ‘sp_calendar’) . ‘, ‘ .$year; ?>

    And now I lost the title completely!! Help!

    <td style=”text-align:center; margin:0;” width=”40%”>
    <input type=”hidden” name=”month” readonly=”” value=”<?php echo $month; ?>”/>
    <span style=”line-height: 30px;font-family:arial; color:<?php echo $text_color_month; ?>; font-size:<?php echo $month_font_size; ?>px;text-shadow: 1px 1px black<?php echo __($month, ‘sp_calendar’) . ‘, ‘ .$year; ?></span>
    </td>

    Sona

    (@support-web-dorado)

    Dear amdietrick,

    The code should be like this:

    <td style=”text-align:center; margin:0;” width=”40%”>
    <input type=”hidden” name=”month” readonly=”” value=”<?php echo $month; ?>”/>
    <span style=”line-height: 30px;font-family:arial; color:<?php echo $text_color_month; ?>; font-size:<?php echo $month_font_size; ?>px;text-shadow: 1px 1px black;”><?php echo __($month, ‘sp_calendar’) . ‘, ‘ .$year; ?></span>
    </td>

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Reverse Month and Year in header’ is closed to new replies.