• 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: Image in upcoming event not clickable.

Image in upcoming event not clickable. 1 month 3 weeks ago #43273

  • bee2
  • bee2's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
I have a problem with the upcoming events module.

Is it possible that the image has the link of the event.
I made my images bigger and it would be better if they are clickable.
The administrator has disabled public write access.

Image in upcoming event not clickable. 1 month 1 week ago #43337

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

If you wish to make the event icons clickable from the Upcoming events module > Image layout, then you can do this with the help of a template override:
www.rsjoomla.com/support/documentation/r...s-look-and-feel.html

The file you will need to create an override for is the image.php, in this file you will need to search for:
<div class="rsepro-image">
	<img src="<?php echo $image; ?>" alt="<?php echo $event->name; ?>" width="70" />
</div>

and copy the link from the event name:
<div class="rsepro-image">
	<a <?php echo $open; ?> href="<?php echo rseventsproHelper::route('index.php?option=com_rseventspro&layout=show&id='.rseventsproHelper::sef($event->id,$event->name),true,$itemid); ?>">
		<img src="<?php echo $image; ?>" alt="<?php echo $event->name; ?>" width="70" />
	</a>
</div>
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.
  • 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!