Add a description to upcoming events module

  • Chris French
  • Topic Author
  • Offline
  • New Member
  • New Member
More
12 years 8 months ago #31736 by Chris French
Add a description to upcoming events module was created by Chris French
Hi

Is there any chance you could guide me on adding a description to upcoming events module please

Cheers

Chris

Please Log in or Create an account to join the conversation.

More
12 years 8 months ago #31837 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: Add a description to upcoming events module
Hi Chris

This will require some code modifications :

1. Open the file modules/mod_eb_events/mod_eb_events.php

2. Find the line of code below :
Code:
$sql = 'SELECT a.id, a.title, a.location_id, a.event_date, c.name AS location_name FROM #__eb_events AS a '

3. Change it to :
Code:
$sql = 'SELECT a.id, a.title, a.description, a.location_id, a.event_date, c.name AS location_name FROM #__eb_events AS a '

4. Edit the code in the file modules/mod_eb_events/tmpl/default.php, use the following code to display the description (hope you know some coding) :
Code:
<?php echo $row->description; ?>

Hope this help.

Tuan
The following user(s) said Thank You: Chris French

Please Log in or Create an account to join the conversation.

More
12 years 8 months ago #31856 by Khairul Hakim
Replied by Khairul Hakim on topic Re: Add a description to upcoming events module
Please teach me in details. I do not know much about coding

Please Log in or Create an account to join the conversation.

More
12 years 8 months ago #31905 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: Add a description to upcoming events module
Hi Khairul

If my explanation above is not enough for you, then there is no way for me to guide you. In this case, please submit a support ticket sending me administrator and FTP account of your site so that I can edit the code for you directly on your site.

Regards,

Tuan

Please Log in or Create an account to join the conversation.

Moderators: Tuan Pham Ngoc