OS Property support center

show email agent

  • ramon zaragoza
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
10 years 5 months ago #54535 by ramon zaragoza
show email agent was created by ramon zaragoza
the tab for a property shown The logo, name and phone agent, how I can also show your email? in components > com_osproperty > templates > my_current_template > details.html.tpl.php I added in the
<li class="propertyinfoli">
<?php echo$row->agent_phone;?>
</li>
this line <?php echo$row->agent_email;?>
but not shown
Is it could show the email easily?
Thaks Dam
Attachments:

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

More
10 years 5 months ago #54553 by Mr. Dam
Replied by Mr. Dam on topic show email agent
Hi,
You must have this code first
<?php
$db->setQuery("Select * from #__osrs_agents where id = '$row->agent_id'");
$agentdetails = $db->loadObject();
?>
And then, you will be able to retrieve data of agents like email, phone..etc
for example
echo $agentdetails>email;
echo $agentdetails->phone;
..etc

Good luck
Dam

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

  • ramon zaragoza
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
10 years 5 months ago #54611 by ramon zaragoza
Replied by ramon zaragoza on topic show email agent
perfect.
Thaks.

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

Moderators: Mr. DamNguyen Phu Quan