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.

After Upgrade to 3.2.0.3 'All Events' page breaks

10 years 2 weeks ago
  • Paul's Avatar
    Topic Author
  • Paul
  • Offline
  • Fresh Boarder
  • Posts: 97
  • Thank you received: 2
Licenses:
JomSocial Active

Hi,

I'm one of the unfortunates whose site decided to upgrade Joomla to 3.3 rather than 3.2.4!
Having realised too late I've upgraded to JS 3.2.0.3 and it's pretty much ok except the event page...it's completely broken. No formatting at all.
Have you any suggestions please??

Cheers
Paul

10 years 1 week ago
Licenses:

Hi Paul,

It fxed now. the problem because your override file:
/public_html/templates/bt_metro/html/com_community/events.list.php

function cIsPlural is not found, we not using that function. you must be know how to make that function available again.
because that, i made the changes at lines 72 and 74.

Before

<a href="<?php echo $event->getGuestLink( COMMUNITY_EVENT_STATUS_ATTEND );?>"><?php echo JText::sprintf((cIsPlural($event->confirmedcount)) ? 'COM_COMMUNITY_EVENTS_COUNT_MANY_PAST':'COM_COMMUNITY_EVENTS_COUNT_PAST', $event->confirmedcount);?></a>
<?php } else { ?>
<a href="<?php echo $event->getGuestLink( COMMUNITY_EVENT_STATUS_ATTEND );?>"><?php echo JText::sprintf((cIsPlural($event->confirmedcount)) ? 'COM_COMMUNITY_EVENTS_MANY_GUEST_COUNT':'COM_COMMUNITY_EVENTS_GUEST_COUNT', $event->confirmedcount);?></a>

After
<a href="<?php echo $event->getGuestLink( COMMUNITY_EVENT_STATUS_ATTEND );?>"><?php echo JText::sprintf(($event->confirmedcount) ? 'COM_COMMUNITY_EVENTS_COUNT_MANY_PAST':'COM_COMMUNITY_EVENTS_COUNT_PAST', $event->confirmedcount);?></a>
<?php } else { ?>
<a href="<?php echo $event->getGuestLink( COMMUNITY_EVENT_STATUS_ATTEND );?>"><?php echo JText::sprintf(($event->confirmedcount) ? 'COM_COMMUNITY_EVENTS_MANY_GUEST_COUNT':'COM_COMMUNITY_EVENTS_GUEST_COUNT', $event->confirmedcount);?></a>

Regards,
Albert

The following user(s) said Thank You: Paul
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