Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • bassetto Friend
    #147063

    What file should I take action to change the “Date”in headline and “You are here ..” in italian. Thank you are fantastic

    crazyleggs Friend
    #327370

    For “You Are Here”
    templatesja_selenilayoutsblockstopsl.php
    Line 4

    Not sure about the date

    ibrahimbdawy Friend
    #327544

    Hi bassetto
    Please Open : templatesja_selenilayoutsblocksheader.php
    And then change
    [PHP] <?php
    echo “<span class=”day”>”.date (‘l’).”</span>”;
    echo “<span class=”date”>, “.date (‘M’).” “.date (‘d’).date (‘S’).”</span>”;
    ?> [/PHP]
    to

    [PHP]<?php
    $datum = date(“j F Y”);
    $dagvanweek = date(“l”);
    $arraydag = array(
    “الأحد”,
    “الأثنين”,
    “الثلاثاء”,
    “الآربعاء”,
    “الخميس”,
    “الجمعة”,
    “السبت”
    );
    $dagvanweek = $arraydag;
    $arraymaand = array(
    “يناير”,
    “فبراير”,
    “مارس”,
    “أبريل”,
    “مايو”,
    “يونيو”,
    “يوليو”,
    “أغسطس”,
    “سبتمبر”,
    “أكتوبر”,
    “نوفمبر”,
    “ديسمبر”
    );
    $datum = date(“j “) . $arraymaand
    . date(” Y”);
    echo “$dagvanweek, $datum”;
    ?> [/PHP]

    This change of the Arabic language as an example
    I hope that helps you

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

This topic contains 3 replies, has 3 voices, and was last updated by  ibrahimbdawy 14 years, 4 months ago.

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