masihdindar Hi there, Currently my topic's date showing like "1 min ago" or "4 days ago", But for "week" and "month" it showing "exact date" like "2 jul". I want to convert all dates like "& ago" (week ago, month ago, year ago, etc.) How can i do it?
clarkwinkelmann Unfortunately this cannot easily be changed. The switch from "ago" format to month and then to month+year is hard-coded in the utils/humanTime method https://github.com/flarum/framework/blob/main/framework/core/js/src/common/utils/humanTime.ts And there's currently no way to override a Flarum standalone method because they cannot be monkey-patched. You would have to use the extension API to override the template of each place that uses the util method, and call a different util method in its place.