• 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: RSEvents Pro Upcoming Events Module

RSEvents Pro Upcoming Events Module 12 years 10 months ago #17882

Would love to have the feature that allows modification of display (event location, event name) since this is going to be essential in me upgrading to Pro on my live site. As of now, I do not see a way to show the location in the module. I agree with others that Pro is a nice upgrade but because of my company's special requirements, having the ability to modify the module was crucial.
Thanks.
The administrator has disabled public write access.

Re: RSEvents Pro Upcoming Events Module 12 years 10 months ago #17981

Thankfully the new RSEvents follows the proper Joomla MVC architecture, so adding fields is relatively easy

  1. copy the default.php file from /modules/mod_rseventspro_upcoming/tmpl/default.php
  2. to /templates/$yourtempate/html/mod_rseventspro_upcoming/default.php

Then edit the default.php file and add what you need.... for this example it would be

<?php echo $event->location;?>

Seeing as the $event object appears to be derived from the query below, you can ask for any of the items!

$db->setQuery("SELECT e.`id`, e.`name`, e.`start`, e.`end`, e.`description`, e.`owner`, e.`URL`, e.`email`, e.`phone`, e.`registration`, e.`comments`, e.`icon`, e.`start_registration`, e.`end_registration`, e.`unsubscribe_date`, e.`payments`, e.`options`, e.`archived`, e.`published`, e.`completed`, e.`show_registered`, l.`id` as locationid, l.`name` as location, l.`url` as locationlink, l.`address`, l.`description` as ldescription, l.`coordinates`, l.`published` as lpublished FROM `#__rseventspro_events` e LEFT JOIN `#__rseventspro_locations` l ON e.`location` = l.`id` WHERE e.`id` = ".(int) $id." ");
The administrator has disabled public write access.
The following user(s) said Thank You: cabotscouts

Re: RSEvents Pro Upcoming Events Module 12 years 3 months ago #20907

  • dante0
  • dante0's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
How can I query the event icon? If I use the existing php echo ....$event->icon it does not work....any thoughts?

Thanks in advance.
The administrator has disabled public write access.

RSEvents Pro Upcoming Events Module 11 years 5 months ago #25593

  • dave223
  • dave223's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
is it possible to get a categories echo?

i have testet with:
<?php echo $event->categories;?>
<?php echo $event->category;?>
(both didnt work)
The administrator has disabled public write access.

RSEvents Pro Upcoming Events Module 11 years 3 months ago #26071

I need this too before I purchase. Has anyone been able to get it to work, with the icon, or at least the icon of the country where the event is taking place? Thank you!
The administrator has disabled public write access.

RSEvents Pro Upcoming Events Module 10 years 4 days ago #31118

hi everybody, i need to call the category name or the category id, but, as jesse.williams said, the following code lines don't work
<?php echo $event->categories;?>
<?php echo $event->category;?>

Is there a way to call an element (id, name, colour) of category's event in php?

thanks and regards,

Marietto
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!