ISSUE SUMMARY:
1 Theme Designer > Profile > User Info: Profile cuts year off of date on front-end profile page (format M d, Y).
2 In front-end Profile Page, when apps set as "Core Application", title has quotes around them.
STEPS TO REPLICATE:
RESULT:
1 Started Vaping on Dec 19 | Quite Smoking on Dec 26
2 "Forum Posts" ; "My Events" ; "My Videos" displayed as titles
EXPECTED RESULT:
1 Started Vaping on Dec 19, 2012 | Quite Smoking on Dec 26, 2012
2 Forum Posts ; My Events ; My Videos - without the quotes around them
BROWSER:
Chrome for Windows
Hi, Adam-Lee.
1. I don't see that anything is cut off here:
prntscr.com/6jhgyw
2. That's correct as they look like this in language file. But you may override them:
prntscr.com/6jhf50
documentation.jomsocial.com/wiki/Changin...gle_Sentence_or_Word
Hello, for number 1, I apologize for not being more specific. I was talking about the date when adding info under the username via Theme Designer > Profile > User Info (image attached). You can see it cuts out the year.
As for number 2, Thank you. I saw that in a blog posted on this site after I asked.
Hi, Adam-Lee.
I assign developer to this thread.
So I figured out that it doesn't like the comma in the date format (M d, Y) after the "d". Removing it shows the year, but putting it back in removes the year. Could this be fixed so I can keep the comma?
Please you put space after d, to be like this (M d , Y)
Ehm. this is bug.. I already reported.. for time being I suggest you remove the comma, because this issue is coming from there
You're welcome..
this is the patch.. open this file components/com_community/templates/jomsocial/layouts/profile/focus.php, find this code :
$blockString .= JText::_($themeModel->formatField($profile->fieldsById->{$block['field']}));
$blockString .= $themeModel->formatField($profile->fieldsById->{$block['field']});
you're welcome..