This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Date in Results in german

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #8571
    kognitowebkognitoweb
    Participant

    Hi,
    I realized that the “Date” in the Result field is displayed in ENGLISH, however I want to display it in GERMAN. I couldnt find the position to change this. Ive attached a screenshot. Thanks!

    #8579
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Sorry about the late answer. I had to investigate this problem as I thought the localization was done automatically.
    This is actually a bug, which I will have to fix in the upcoming release.

    Until then, I have put together a temporary fix for you. Put this code into the functions.php file in your active theme directory:
    [php]
    add_filter(‘asp_pagepost_results’, ‘asp_loc_dates’, 1, 1);
    function asp_loc_dates( $results ) {
    foreach ($results as $k => $r) {
    if ( empty($r->date) ) continue;

    $results[$k]->date = date_i18n( "d. F Y", strtotime($r->date) );
    }
    return $results;
    }[/php]

    #8613
    kognitowebkognitoweb
    Participant

    Thanks, that solved it!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.