I am showing the article's created date in a filtered list (see attached). At the moment it is being displayed in yyyy-m-yy format: how can I change the format to dd/mm/yyyy?
Thanks
Miles

    milesreid
    Hi Miles,

    You can open the file: /components/com_jamegafilter/assets/js/main.js

    Look for this line of code:

    _value = _date.getFullYear()+'-'+(_date.getMonth()+1)+'-'+_date.getDate();

    change it to:

    _value = _date.getDate()+'-'+(_date.getMonth()+1)+'-'+_date.getFullYear();

    That's brilliant - just what I wanted.
    Many thanks
    Miles

    Write a Reply...
    You need to Login to view replies.