تغيير تنسيق التاريخ / عرض المستخدم من المنتدى

مرحباً، كيف يمكنني تغيير تنسيق التاريخ ليصبح 17.6؟

شكراً لك

هل لا يوجد خيار؟ :confused:

هل نظرت في الكود المصدري؟

المشكلة هي أنني أستطيع العمل مباشرة على الصفحة حيث يمكنني فقط استخدام html css و javascript

هذا يتم عرضه بواسطة JavaScript.

إليك القالب المرتبط، ربما سيساعدك هذا على التحرر:

https://github.com/discourse/discourse/blob/main/app/assets/javascripts/discourse/app/templates/components/user-card-contents.hbs

إعجابَين (2)

Hello,

If you want to change date format then you can change it on /admin/customize/site_texts/

js.dates.tiny.date_month
default: MMM D change it to D.M
it will change the June 17 to 17.6

js.dates.medium.date_year
default MMM D, 'YY change it to D.M 'YY
it will change the year version June 17, '20 to 17.6 '20

Or something like this :slightly_smiling_face:

Notice: Be careful with this because these will replace the date format wherever it is used not just on user card.

Other date format strings find here:
/admin/customize/site_texts?q=js.dates
/admin/customize/site_texts?q=datetime_formats

5 إعجابات

نعم! شكرا لك :slight_smile: هذا هو الحل لحالتي :slight_smile:

إعجابَين (2)