- Posts: 61
- Thank you received: 0
how to programme location to show in category list
- Cynthia
- Topic Author
- Offline
- Senior Member
-
Less
More
14 years 5 months ago #5141
by Cynthia
how to programme location to show in category list was created 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
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
Please Log in or Create an account to join the conversation.
- Tuan Pham Ngoc
- Offline
- Administrator
-
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 :
Thanks,
Tuan
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
-
Less
More
- Posts: 61
- Thank you received: 0
14 years 5 months ago #5206
by Cynthia
Replied by Cynthia on topic Re: how to programme location to show in category list
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
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.
- Tuan Pham Ngoc
- Offline
- Administrator
-
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 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
-
Less
More
- Posts: 61
- Thank you received: 0
14 years 5 months ago #5238
by Cynthia
Replied by Cynthia on topic Re: how to programme location to show in category list
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
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
Support
Documentation
Information
Copyright © 2025 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.