OS Property support center

SOLVED !!! Changing an agent to Featured

  • Alfredo
  • Topic Author
  • Offline
  • New Member
  • New Member
More
9 years 11 months ago - 9 years 10 months ago #69327 by Alfredo
Hi folks:
I'm trying to order my agents list to show first the Featured Agents to show them on the front-end
When I click the "star" nothing happens.
I enclose a screen capture.
Any clue?
Last edit: 9 years 10 months ago by Dang Thuc Dam.

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

More
9 years 11 months ago #69433 by Dang Thuc Dam
Replied by Dang Thuc Dam on topic Changing an agent to Featured
Hi,
To solve the issue, please follow these steps
1. Open file: administrator > components > com_osproperty > classes > agent.html.php
2. Find
Code:
<?php if($row->featured == 1){ ?> <a class="btn btn-micro active hasTooltip" href="index.php?option=com_osproperty&task=agent_changeunfeatured&cid[]=<?php echo $row->id?>&limitstart=<?php echo $pageNav->limitstart?>&limit=<?php echo $pageNav->limit?>" title="<?php echo JText::_('OS_CHANGE_FEATURED_STATUS');?>"> <i class="osicon-star"></i> </a> <?php }else{ ?> <a class="btn btn-micro active hasTooltip" href="index.php?option=com_osproperty&task=agent_changefeatured&cid[]=<?php echo $row->id?>&v=1&limitstart=<?php echo $pageNav->limitstart?>&limit=<?php echo $pageNav->limit?>" title="<?php echo JText::_('OS_CHANGE_FEATURED_STATUS');?>" style="color:black;"> <i class="osicon-star"></i> </a> <?php } ?>


and replace by
Code:
<?php if($row->featured == 1){ ?> <a class="btn btn-micro active hasTooltip" href="index.php?option=com_osproperty&task=agent_changeunfeatured&cid[]=<?php echo $row->id?>&limitstart=<?php echo $pageNav->limitstart?>&limit=<?php echo $pageNav->limit?>" title="<?php echo JText::_('OS_CHANGE_FEATURED_STATUS');?>" style="color:orange;"> <i class="osicon-star"></i> </a> <?php }else{ ?> <a class="btn btn-micro active hasTooltip" href="index.php?option=com_osproperty&task=agent_changefeatured&cid[]=<?php echo $row->id?>&v=1&limitstart=<?php echo $pageNav->limitstart?>&limit=<?php echo $pageNav->limit?>" title="<?php echo JText::_('OS_CHANGE_FEATURED_STATUS');?>" style="color:black;"> <i class="osicon-star"></i> </a> <?php } ?>

Good luck
Dam
The following user(s) said Thank You: Alfredo

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

  • Alfredo
  • Topic Author
  • Offline
  • New Member
  • New Member
More
9 years 10 months ago #70470 by Alfredo
Replied by Alfredo on topic Changing an agent to Featured
Issue was solved after upgrading to Version 2.9.2
Thanks again Dam. Keep on going!

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

Moderators: Dang Thuc DamNguyen Phu Quan