This topic contains 2 replies, has 2 voices, and was last updated by kognitoweb 8 years, 4 months ago.
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.
Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Date in Results in german
This topic contains 2 replies, has 2 voices, and was last updated by kognitoweb 8 years, 4 months ago.
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!
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:
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;
}
Best,Thanks, that solved it!
You must be logged in to reply to this topic.
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |