how to programme location to show in category list

  • Cynthia
  • Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
14 years 5 months ago #5141 by Cynthia
I would like to have the location to show in the category list.

Therefore I added this code to the file views->category->tmpl>default.php:


if ($item->location_id) {
?>
<div class="eb_prop">
<dt>
<?php echo JText::_('EB_LOCATION'); ?>:
</dt>
</dt>
<dd>
<?php echo $item->location_id ; ?>
</dd>
</div>
<?php
}





Now the location ID shows, but what code should I put in to get the name of the location instead of the ID?

Best regards,
Cynthia
Attachments:

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

More
14 years 5 months ago #5163 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: how to programme location to show in category list
Hi

The simplest way is replace the code you added with this code :
Code:
if ($this->item->location_id) { $db = & JFactory::getDBO() ; $sql = 'SELECT name FROM #__eb_locations WHERE id='.$this->item->location_id ; $db->setQuery($sql) ; $locationName = $db->loadResult(); ?> <div class="eb_prop"> <dt> <?php echo JText::_('EB_LOCATION'); ?>: </dt> <dd> <?php echo $locationName ; ?> </dd> </div> <?php } ?>

Thanks,

Tuan

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

  • Cynthia
  • Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
14 years 5 months ago #5206 by Cynthia
Hi Tuan,

Thank you so much for your help. I replaced the code bur unfortunately i get a total blank page (the whole site desappears when I click on a menu item that refers to an event booking category.

Do you have any idea what that can be?

Best regards, Cynthia

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

More
14 years 5 months ago #5208 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: how to programme location to show in category list
Hi

Please email me administrator account of your site so that I can make the change directly to the site for you .

Thanks,

Tuan

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

  • Cynthia
  • Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
14 years 5 months ago #5238 by Cynthia
Hi Tuan,

Thank you so much for wanting to take a look at my site. I mailed the admin account data to you hotmail account.

Best regards, Cynthia

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

Moderators: Tuan Pham Ngoc