Quay - the format day month and year

Social Joomla! template ideal to promote activities and discussion at various levels with JomSocial support.
GK User
Mon Sep 13, 2010 5:33 am
hi,
the whole site is in the desired format (day, month and year), less in the presentation of the module members, which is in the following order (year, month and day).

could someone help me change it?

grateful see image
User avatar
Junior Boarder

GK User
Mon Sep 13, 2010 4:38 pm
Hi

Please open this file ../modules/mod_gk_js_members/tmpl/default.php

and find this fragment:

Code: Select all
<span><?php echo date('Y-m-d h:i',strtotime($member->registerDate)); ?></span>


change to

Code: Select all
<span><?php echo date('d-m-Y h:i',strtotime($member->registerDate)); ?></span>



Find also this

Code: Select all
<span><?php echo (strtotime($member->lastvisitDate) == 0) ? JText::_('NEVER') : date('Y-m-d h:i',strtotime($member->lastvisitDate)); ?></span>


replace with

Code: Select all
<span><?php echo (strtotime($member->lastvisitDate) == 0) ? JText::_('NEVER') : date('d-m-Y h:i',strtotime($member->lastvisitDate)); ?></span>


Cheers ;)
User avatar
Platinum Boarder

GK User
Tue Sep 14, 2010 1:09 am
okay.
alright
perfect, how I wish
User avatar
Junior Boarder

GK User
Tue Sep 14, 2010 1:25 am
Hello,
I still have difficulties with the module mod_gk_js_members, can not find where I can change (Last online) and (Member since), for my language.

I have looked in some directories and files and can not find anything, then you can help me?
I was very trying time.

Thank you very much


see image

To be more complete, I am having difficulty translating elements that are related to the subject Quay.

already edited files of my language, but do not get any result

/language/pt-BR/pt-BR.ini
/language/pt-BR/pt-BR.com_community.ini

Is there any other place that may change beyond the original language

en-GB.com_community.ini
en-GB.ini
User avatar
Junior Boarder

teitbite
Wed Sep 15, 2010 3:25 pm
Hi

You can find it at en-GB.mod_gk_js_members.ini
User avatar
Moderator


cron