test
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • helenschormann Friend
    #160206

    I would like to change the date display order in Teline IV in the Headlines position. Our custom is to have the order day, month, year currently it displays as month, day, year. I have tried various options but they all do not work. Please let me know if it is possible to do

    Sherlock Friend
    #376734

    Dear helenshormann,

    Just try as following for the issue
    open the file of templatesja_teline_ivblockstopbar.php,you would see this code
    [PHP]
    <?php
    echo “<span class=”day”>”.date (‘D’).”</span>”;
    echo “<span class=”month”>”.date (‘m’).”</span>”;
    echo “<span class=”date”>”.date (‘d’).”</span>”;
    echo “<span class=”year”>”.date (‘Y’).”</span>”;
    ?>
    [/PHP]
    And change it to
    [PHP]
    <?php
    echo “<span class=”day”>”.date (‘D’).”</span>”;
    echo “<span class=”date”>”.date (‘d’).”</span>”;
    echo “<span class=”month”>”.date (‘m’).”</span>”;
    echo “<span class=”year”>”.date (‘Y’).”</span>”;
    ?>
    [/PHP]

    I think that would help !

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  Sherlock 13 years, 9 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum