• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Remove link

Remove link 14 years 3 months ago #12465

  • ursyy25
  • ursyy25's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 12
Hy!

I was wondering how to remove link from 'Upcoming events' module (for location), so, in which file can I do that or where in backend?

Also I want to remove a link in 'Details of event': for Location.

Thanks for help!
The administrator has disabled public write access.

Re:Remove link 14 years 3 months ago #12505

  • andreic
  • andreic's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 745
  • Thank you received: 66
Hello,

If you wish to remove the link from the event name in the upcoming events module please try going to modules/mod_rsevents_upcoming and edit the helper.php file. Just search for:
$row->LocationName = '<a target="'.$target.'" href="'.$locationlink.'">'.$row->LocationName.'</a>';

and replace it with
$row->LocationName = $row->LocationName;

In order to achieve this you will need to go to components/com_rsevents/helpers/ and edit the events.php file. Just search for :
$eventLocationUrl = JText::_('RSE_AT_LOCATION').' <a href="'.$link.'">'.$event->LocationName.'</a>';

and replace it with
$eventLocationUrl = JText::_('RSE_AT_LOCATION').' '.$event->LocationName;
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Re:Remove link 14 years 3 months ago #12525

  • ursyy25
  • ursyy25's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 12
That worked out perfectly, thanks, except in details of event: location address is still a link (for location name link is removed).
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!