Notice

The forum is in read only mode.

Support Forum

Welcome! Support Forums have been reactivated
Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.

Events Calender Days not showing in Arabic

6 years 10 months ago
Licenses:
JomSocial Active iSEO Active Socialize Expired

I am not able to see Days in Arabic RTL, its showing "ا�" and I did not see any translation both in EN and in AR

www.qatar333.com/ar/qatar-events

Attachments:
6 years 10 months ago
Licenses:

Hi, Ismail.

Thank you for contacting us.
I assign developer to investigate this issue further.
He'll contact you at Monday.


- Instead of saying: 'it's not working', explain the problem in detail.
- Screenshots with the URL visible in them and the problem marked are more than welcome.
- Tell us how to replicate the problem, we can't fix it if we can't find it.
- Make sure that your site/server meets JomSocial System Requirements
- Make sure to setup JomSocial Cron Job
- Always provide us with access details to the backend and ftp. We need it to debug problems.
- If you have a similar problem, but a solution you found isn't working, open a new thread instead of 'merging' with an existing one.

- Use the "Thank You" feature on any post that helped you
6 years 10 months ago
  • Dimas's Avatar
  • Dimas
  • Visitor
  • Thank you received: 0
Licenses:

Hi Ismail,

Would you mind provide me backend and FTP access, please? I will check the code directly..

thank you!

6 years 10 months ago
Licenses:
JomSocial Active iSEO Active Socialize Expired

I sent you PM, plz check

6 years 10 months ago
  • Dimas's Avatar
  • Dimas
  • Visitor
  • Thank you received: 0
Licenses:

Hi,

Your FTP is not working for me, so here is the solution

- open this file modules/mod_community_eventscalendar/tmpl/default.php
- find this code

'<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_1", true), 0, 3 ) ?>',
                '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_2", true), 0, 3 ) ?>',
                '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_3", true), 0, 3 ) ?>',
                '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_4", true), 0, 3 ) ?>',
                '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_5", true), 0, 3 ) ?>',
                '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_6", true), 0, 3 ) ?>',
                '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_7", true), 0, 3 ) ?>'
and replace
to
'<?php echo  JText::_("COM_COMMUNITY_DATEPICKER_DAY_1", true) ?>',
                '<?php echo  JText::_("COM_COMMUNITY_DATEPICKER_DAY_2", true) ?>',
                '<?php echo  JText::_("COM_COMMUNITY_DATEPICKER_DAY_3", true) ?>',
                '<?php echo  JText::_("COM_COMMUNITY_DATEPICKER_DAY_4", true) ?>',
                '<?php echo  JText::_("COM_COMMUNITY_DATEPICKER_DAY_5", true) ?>',
                '<?php echo  JText::_("COM_COMMUNITY_DATEPICKER_DAY_6", true) ?>',
                '<?php echo  JText::_("COM_COMMUNITY_DATEPICKER_DAY_7", true) ?>'

If this solution doesnt work please provide me the correct FTP access or install eXtplorer on your Joomla backend.

thank you!

6 years 10 months ago
Licenses:
JomSocial Active iSEO Active Socialize Expired

Its SFTP, not ftp, You need to use port 22 .credentials are correct

6 years 10 months ago
  • Dimas's Avatar
  • Dimas
  • Visitor
  • Thank you received: 0
Licenses:

please check again should be fine now

6 years 10 months ago
  • Dimas's Avatar
  • Dimas
  • Visitor
  • Thank you received: 0
Licenses:

here is the correct patch for fixing this issue, open this file modules/mod_community_eventscalendar/tmpl/default.php and revert to original code
find this code

'<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_1", true), 0, 3 ) ?>',
                 '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_2", true), 0, 3 ) ?>',
                 '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_3", true), 0, 3 ) ?>',
                 '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_4", true), 0, 3 ) ?>',
                 '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_5", true), 0, 3 ) ?>',
                 '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_6", true), 0, 3 ) ?>',
                 '<?php echo substr( JText::_("COM_COMMUNITY_DATEPICKER_DAY_7", true), 0, 3 ) ?>'

replace to
'<?php echo JText::_("SUN") ?>',
                 '<?php echo JText::_("MON") ?>',
                 '<?php echo JText::_("TUE") ?>',
                 '<?php echo JText::_("WED") ?>',
                 '<?php echo JText::_("THU") ?>',
                 '<?php echo JText::_("FRI") ?>',
                 '<?php echo JText::_("SAT") ?>',

and then find this code
'<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_1", true) ?>',
                '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_2", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_3", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_4", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_5", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_6", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_7", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_8", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_9", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_10", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_11", true) ?>',
                 '<?php echo JText::_("COM_COMMUNITY_DATEPICKER_MONTH_12", true) ?>'

replace to
'<?php echo JText::_("JANUARY", true) ?>',
                 '<?php echo JText::_("FEBRUARY", true) ?>',
                 '<?php echo JText::_("MARCH", true) ?>',
                 '<?php echo JText::_("APRIL", true) ?>',
                 '<?php echo JText::_("MAY", true) ?>',
                 '<?php echo JText::_("JUNE", true) ?>',
                 '<?php echo JText::_("JULY", true) ?>',
                 '<?php echo JText::_("AUGUST", true) ?>',
                 '<?php echo JText::_("SEPTEMBER", true) ?>',
                 '<?php echo JText::_("OCTOBER", true) ?>',
                 '<?php echo JText::_("NOVEMBER", true) ?>',
                 '<?php echo JText::_("DECEMBER", true) ?>'

Moderators: Piotr Garasiński
Powered by Kunena Forum

Join 180,000 websites creating Amazing communities

JomSocial is the most complete, easy-to-use addon that turns Joomla CMS into a
full -fledged, social networking site

TRY NOW BUY NOW